1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 15:42:58 +00:00
cloudkeys-go/config_default.go
Knut Ahlers cba35eff93
Add fix for config parsing into code
This implements a comment from Luzifer/cloudkeys-go#17 in order not to
have to change the `config.go` when deploying

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-12-29 21:49:50 +01:00

12 lines
153 B
Go

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