12 lines
138 B
Go
12 lines
138 B
Go
package gh
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetToken(t *testing.T) {
|
|
token, _ := GetToken(context.TODO(), "")
|
|
t.Log(token)
|
|
}
|