inital commit & import from main project

This commit is contained in:
2023-12-14 15:12:13 +01:00
parent 4f41711c56
commit 235b755ab1
7 changed files with 798 additions and 0 deletions

11
utils.go Normal file
View File

@@ -0,0 +1,11 @@
package main
type Conf struct {
DB struct {
Driver string
ConnectTo string `yaml:"connect_to"`
} `yaml:"db"`
Logging struct {
Level string
}
}