This commit is contained in:
laodaming
2023-06-14 14:57:20 +08:00
parent 6f6da3f481
commit 5b2eef4822
9 changed files with 445 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package config
import (
"fusenapi/server/map_library/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
}