17 lines
377 B
Go
17 lines
377 B
Go
package mail
|
|
|
|
import (
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
// 邮件配置管理组件
|
|
type Configure_Comp struct {
|
|
modules.MCompConfigure
|
|
}
|
|
|
|
func (this *Configure_Comp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
|
this.MCompConfigure.Init(service, module, comp, options)
|
|
return
|
|
}
|