✨ init project
This commit is contained in:
28
plugin/email/main.go
Normal file
28
plugin/email/main.go
Normal file
@@ -0,0 +1,28 @@
|
||||
package email
|
||||
|
||||
import (
|
||||
"git.echol.cn/loser/lckt/plugin/email/global"
|
||||
"git.echol.cn/loser/lckt/plugin/email/router"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
type emailPlugin struct{}
|
||||
|
||||
func CreateEmailPlug(To, From, Host, Secret, Nickname string, Port int, IsSSL bool) *emailPlugin {
|
||||
global.GlobalConfig.To = To
|
||||
global.GlobalConfig.From = From
|
||||
global.GlobalConfig.Host = Host
|
||||
global.GlobalConfig.Secret = Secret
|
||||
global.GlobalConfig.Nickname = Nickname
|
||||
global.GlobalConfig.Port = Port
|
||||
global.GlobalConfig.IsSSL = IsSSL
|
||||
return &emailPlugin{}
|
||||
}
|
||||
|
||||
func (*emailPlugin) Register(group *gin.RouterGroup) {
|
||||
router.RouterGroupApp.InitEmailRouter(group)
|
||||
}
|
||||
|
||||
func (*emailPlugin) RouterPath() string {
|
||||
return "email"
|
||||
}
|
||||
Reference in New Issue
Block a user