mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-09 19:47:50 +08:00
10 lines
158 B
Go
10 lines
158 B
Go
|
package configs
|
||
|
|
||
|
type Sqlite struct {
|
||
|
GeneralDB `yaml:",inline" mapstructure:",squash"`
|
||
|
}
|
||
|
|
||
|
func (s *Sqlite) Dsn() string {
|
||
|
return s.Path + "/" + s.DbFile
|
||
|
}
|