Files
anydb/cfg/config.go

19 lines
318 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.3"
2024-12-16 19:11:36 +01:00
type Config struct {
Debug bool
Dbfile string
Template string
Mode string // wide, table, yaml, json
NoHeaders bool
NoHumanize bool
Encrypt bool
DB *app.DB
File string
Tags []string
2024-12-16 19:11:36 +01:00
}