verifycode-reconstruct/main.go

14 lines
189 B
Go
Raw Normal View History

2024-04-03 13:55:27 +08:00
package main
import (
"net/http"
)
func main() {
http.HandleFunc("/verificationcode/", verificationCodeHandler)
err := http.ListenAndServe(":8080", nil)
if err != nil {
return
}
}