Files
anydb/cfg/config.go

16 lines
258 B
Go

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