Files
anydb/cfg/config.go

15 lines
224 B
Go
Raw Normal View History

2024-12-16 19:11:36 +01:00
package cfg
import "github.com/tlinden/anydb/app"
var Version string = "v0.0.1"
type Config struct {
Debug bool
Dbfile string
2024-12-17 14:23:56 +01:00
Mode string // wide, table, yaml, json
2024-12-16 19:11:36 +01:00
DB *app.DB
File string
Tags []string
}