make db configurable

This commit is contained in:
2021-10-05 18:16:26 +02:00
parent 835801c0c6
commit 50b44d9762
3 changed files with 9 additions and 1 deletions

View File

@@ -26,6 +26,10 @@ type Conf struct {
Logging struct {
Level string
}
Db struct {
Driver string
ConnectTo string `yaml:"connect_to"`
}
Parser struct {
Worker int
}