// // cfg.go // Copyright (C) 2024 veypi // 2025-03-04 16:08:06 // Distributed under terms of the MIT license. // package cfg type Options struct { DSN string `json:"dsn"` // Data Source Name DB string `json:"db"` // DB type: mysql, postgres, sqlite ID string `json:"id"` Key string `json:"key"` } var Config = &Options{}