1 Star 0 Fork 0

linxing/youye-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.go 874 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mark 提交于 2024-06-06 16:54 . 添加migrate生命周期
package application
import (
"context"
"fmt"
"github.com/go-kratos/kratos/v2/transport"
)
type IAppModule interface {
ModuleName() string
Install(core IApplication) error
InitRouter(core IApplication) error
Migrate(core IApplication) error
Start(context.Context) error
Stop(context.Context) error
AddServer(key string, server transport.Server) error
GetServer(key string) (transport.Server, error)
}
type AppModule struct {
servers map[string]transport.Server
}
func (a AppModule) AddServer(key string, server transport.Server) error {
if _, ok := a.servers[key]; ok {
return fmt.Errorf("server %s is already exist", key)
}
a.servers[key] = server
return nil
}
func (a AppModule) GetServer(key string) (transport.Server, error) {
if server, ok := a.servers[key]; ok {
return server, nil
}
return nil, fmt.Errorf("server %s is not exist", key)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linxing_3/youye-core.git
git@gitee.com:linxing_3/youye-core.git
linxing_3
youye-core
youye-core
v0.0.1-202407111759

搜索帮助