mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-20 20:06:16 +08:00
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)
|
|
}
|