mirror of
https://github.com/darmiel/yaxc.git
synced 2025-09-08 07:24:33 +08:00
14 lines
180 B
Go
14 lines
180 B
Go
package api
|
|
|
|
import "github.com/spf13/viper"
|
|
|
|
type api struct {
|
|
ServerURL string
|
|
}
|
|
|
|
func API() *api {
|
|
server := viper.GetString("server")
|
|
return &api{
|
|
ServerURL: server,
|
|
}
|
|
}
|