2024-04-03 15:32:05 +00:00
|
|
|
package initialize
|
|
|
|
|
|
|
|
import (
|
2025-02-27 13:10:51 +00:00
|
|
|
"gitea.pena/SQuiz/common/dal"
|
|
|
|
"gitea.pena/SQuiz/core/rpc_service"
|
2024-04-03 15:32:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type RpcRegister struct {
|
|
|
|
MailNotify *rpc_service.MailNotify
|
|
|
|
}
|
|
|
|
|
|
|
|
func InitRpcControllers(dal *dal.DAL) *RpcRegister {
|
|
|
|
return &RpcRegister{
|
|
|
|
MailNotify: rpc_service.NewMailNotify(dal),
|
|
|
|
}
|
|
|
|
}
|