Files
anydb/cfg/config.go

17 lines
274 B
Go
Raw Permalink Normal View History

2024-12-16 19:11:36 +01:00
package cfg
import "github.com/tlinden/anydb/app"
2024-12-19 11:13:08 +01:00
var Version string = "v0.0.2"
2024-12-16 19:11:36 +01:00
type Config struct {
Debug bool
Dbfile string
Mode string // wide, table, yaml, json
NoHeaders bool
2024-12-19 10:37:21 +01:00
Encrypt bool
DB *app.DB
File string
Tags []string
2024-12-16 19:11:36 +01:00
}