Initial commit

This commit is contained in:
dushixiang
2020-12-20 21:19:11 +08:00
commit e7f2773c77
77 changed files with 27866 additions and 0 deletions

14
pkg/config/config.go Normal file
View File

@ -0,0 +1,14 @@
package config
import (
"github.com/patrickmn/go-cache"
"gorm.io/gorm"
)
var DB *gorm.DB
var Cache *cache.Cache
var NextTerminal *NextTerminalConfig
var Store *TunStore