mirror of
https://codeberg.org/scip/anydb.git
synced 2025-12-16 20:10:59 +01:00
16 lines
258 B
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
|
|
}
|