go_dreamfactory/modules/mail/api.go
2022-07-06 15:37:34 +08:00

36 lines
763 B
Go

package mail
import (
"go_dreamfactory/modules"
"go_dreamfactory/lego/core"
)
const (
QueryUserMailResp = "queryusermailresp"
ReadUserMailResp = "readusermailresp"
GetUserMailAttachmentResp = "getusermailattachmentresp"
DelUserMailResp = "delusermailresp"
GetNewEMailResp = "getnewEmailresp"
)
type apiComp struct {
modules.MCompGate
service core.IService
module *Mail
}
func (this *apiComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
this.MCompGate.Init(service, module, comp, options)
this.service = service
this.module = module.(*Mail)
return
}
func (this *apiComp) Start() (err error) {
err = this.MCompGate.Start()
return
}