mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 12:46:17 +08:00
11 lines
118 B
Go
11 lines
118 B
Go
![]() |
package conf
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
var (
|
||
|
ConfigFile string // config file
|
||
|
Conf *Config
|
||
|
Debug bool
|
||
|
|
||
|
DB *gorm.DB
|
||
|
)
|