13 lines
203 B
Go
13 lines
203 B
Go
package email
|
|
|
|
import "github.com/iwind/TeaGo"
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Prefix("/email").
|
|
Get("/verify/:code", new(VerifyAction)).
|
|
EndAll()
|
|
})
|
|
}
|