feat: add backend

This commit is contained in:
Ludvig Lundgren 2021-08-11 15:26:17 +02:00
parent bc418ff248
commit a838d994a6
68 changed files with 9561 additions and 0 deletions

11
internal/domain/config.go Normal file
View file

@ -0,0 +1,11 @@
package domain
type Settings struct {
Host string `toml:"host"`
Debug bool
}
//type AppConfig struct {
// Settings `toml:"settings"`
// Trackers []Tracker `mapstructure:"tracker"`
//}