16 lines
208 B
Go
16 lines
208 B
Go
package yggdrasil
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func ExampleAuthenticate() {
|
|
resp, err := Authenticate("", "")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(resp.SelectedProfile())
|
|
fmt.Println(resp.AccessToken())
|
|
}
|