This commit is contained in:
2024-12-16 19:11:36 +01:00
commit d1d2328fcd
12 changed files with 550 additions and 0 deletions

13
cfg/config.go Normal file
View File

@@ -0,0 +1,13 @@
package cfg
import "github.com/tlinden/anydb/app"
var Version string = "v0.0.1"
type Config struct {
Debug bool
Dbfile string
DB *app.DB
File string
Tags []string
}