yaxc/internal/api/type.go
2021-05-17 00:15:27 +02:00

16 lines
198 B
Go

// +build client
package api
import "github.com/spf13/viper"
type Api struct {
ServerURL string
}
func API() *Api {
server := viper.GetString("server")
return &Api{
ServerURL: server,
}
}