10 lines
149 B
Go
10 lines
149 B
Go
package handle
|
|
|
|
import "net/http"
|
|
|
|
func (h *Handel) SendVerifyCode() http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
}
|
|
}
|