Files
EdgeAPI/internal/configs/api_config_test.go

16 lines
206 B
Go
Raw Permalink Normal View History

2020-07-21 17:27:00 +08:00
package configs
import (
"testing"
2024-07-27 14:15:25 +08:00
_ "github.com/iwind/TeaGo/bootstrap"
2020-07-21 17:27:00 +08:00
)
func TestSharedAPIConfig(t *testing.T) {
config, err := SharedAPIConfig()
if err != nil {
t.Fatal(err)
}
t.Log(config)
}