[agent-go] 开始使用GO重构Agent部分

This commit is contained in:
zeaslity
2023-03-20 14:51:38 +08:00
parent 41de603234
commit 4961a4ddc7
13 changed files with 197 additions and 159 deletions

View File

@@ -0,0 +1,11 @@
package entity
import (
"gorm.io/gorm"
)
type GloablConfig struct {
DB *gorm.DB
}
var CONGIG = new(GloablConfig)