14 lines
226 B
Go
14 lines
226 B
Go
|
package config
|
||
|
|
||
|
type Sqlite struct {
|
||
|
GeneralDB `yaml:",inline" mapstructure:",squash"`
|
||
|
}
|
||
|
|
||
|
func (s *Sqlite) Dsn() string {
|
||
|
return s.Path + "\\" + s.Dbname + ".db"
|
||
|
}
|
||
|
|
||
|
func (s *Sqlite) GetLogMode() string {
|
||
|
return s.LogMode
|
||
|
}
|