You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
304 B
14 lines
304 B
package router
|
|
|
|
import (
|
|
"gin-vue-admin/api/v1"
|
|
"gin-vue-admin/middleware"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitEmailRouter(Router *gin.RouterGroup) {
|
|
EmailRouter := Router.Group("email").Use(middleware.OperationRecord())
|
|
{
|
|
EmailRouter.POST("emailTest", v1.EmailTest) // 发送测试邮件
|
|
}
|
|
}
|