update
This commit is contained in:
parent
919a6124e6
commit
0fa3b1f43f
27
config.go
Normal file
27
config.go
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
|
"github.com/BurntSushi/toml"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Config struct {
|
||||||
|
Host string `toml:"host"`
|
||||||
|
TMDBApiKey string `toml:"tmdbApiKey"`
|
||||||
|
DBName string `toml:"dbName"`
|
||||||
|
UploadFolder string `toml:"uploadFolder"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewConfig(path string) Config {
|
||||||
|
var c Config
|
||||||
|
f := filepath.Join(path, "config.toml")
|
||||||
|
_, err := toml.DecodeFile(f, &c)
|
||||||
|
if err != nil {
|
||||||
|
log.Println("Could not read the config file", err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
return c
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user