mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-10 09:52:51 +00:00
14 lines
130 B
Go
14 lines
130 B
Go
package api
|
|
|
|
import ()
|
|
|
|
var Api ApiInfo
|
|
|
|
type ApiInfo struct {
|
|
Key string `json:"key"`
|
|
}
|
|
|
|
func Configure(a ApiInfo) {
|
|
Api = a
|
|
}
|