Files
fn-serverless/api/models/config.go
2016-07-24 17:46:08 -03:00

16 lines
271 B
Go

package models
type Config struct {
DatabaseURL string `json:"db"`
API string `json:"api"`
Logging struct {
To string `json:"to"`
Level string `json:"level"`
Prefix string `json:"prefix"`
}
}
func (c *Config) Validate() error {
return nil
}