mirror of
https://codeberg.org/scip/anydb.git
synced 2025-12-17 20:41:00 +01:00
20 lines
337 B
Go
20 lines
337 B
Go
package cfg
|
|
|
|
import "github.com/tlinden/anydb/app"
|
|
|
|
var Version string = "v0.0.3"
|
|
|
|
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
|
|
Listen string
|
|
}
|