初始化驱动

This commit is contained in:
ayflying
2025-03-25 14:06:03 +08:00
parent 8d640be472
commit 4b77cd140d
7 changed files with 416 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ package pkg
import (
v1 "github.com/ayflying/utility_go/api/pgk/v1"
"github.com/ayflying/utility_go/pkg/aycache"
"github.com/ayflying/utility_go/pkg/config"
"github.com/ayflying/utility_go/pkg/notice"
"github.com/ayflying/utility_go/pkg/rank"
"github.com/ayflying/utility_go/pkg/s3"
@@ -33,3 +34,7 @@ func Rank() *rank.Mod {
func Websocket() *websocket.SocketV1 {
return websocket.NewV1()
}
func Config() *config.Cfg {
return config.NewV1()
}