mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 19:32:20 +08:00
12 lines
151 B
Go
12 lines
151 B
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateAccessToken(t *testing.T) {
|
|
if _, err := GenerateAccessToken(); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|