1
0
Fork 0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-11-08 14:10:05 +00:00
cloudkeys-go/config_default.go

12 lines
153 B
Go
Raw Normal View History

// +build !appengine
package main
import "github.com/Luzifer/rconfig"
func loadConfig() *config {
cfg := &config{}
rconfig.Parse(cfg)
return cfg
}