mirror of
https://github.com/darmiel/yaxc.git
synced 2025-09-07 06:55:17 +08:00
16 lines
198 B
Go
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,
|
|
}
|
|
}
|