Files
EdgeAPI/internal/configs/api_config_test.go
GoEdgeLab 5a17ae9d79 v1.4.1
2024-07-27 14:15:25 +08:00

16 lines
206 B
Go

package configs
import (
"testing"
_ "github.com/iwind/TeaGo/bootstrap"
)
func TestSharedAPIConfig(t *testing.T) {
config, err := SharedAPIConfig()
if err != nil {
t.Fatal(err)
}
t.Log(config)
}