Files
anydb/cfg/config.go
2024-12-19 11:13:08 +01:00

17 lines
274 B
Go

package cfg
import "github.com/tlinden/anydb/app"
var Version string = "v0.0.2"
type Config struct {
Debug bool
Dbfile string
Mode string // wide, table, yaml, json
NoHeaders bool
Encrypt bool
DB *app.DB
File string
Tags []string
}