Merge branch 'gva-plugins' into feat/notify-dingding

This commit is contained in:
奇淼(piexlmax
2021-08-27 23:20:59 +08:00
committed by GitHub
87 changed files with 4575 additions and 18747 deletions

View File

@@ -7,13 +7,6 @@ import (
)
type emailPlugin struct {
To string
From string
Host string
Secret string
Nickname string
Port int
IsSsl bool
}
func CreateEmailPlug(To, From, Host, Secret, Nickname string, Port int, IsSSL bool) *emailPlugin {
@@ -25,7 +18,6 @@ func CreateEmailPlug(To, From, Host, Secret, Nickname string, Port int, IsSSL bo
global.GlobalConfig.Port = Port
global.GlobalConfig.IsSSL = IsSSL
return &emailPlugin{}
}
func (*emailPlugin) Register(group *gin.RouterGroup) {