first commit
This commit is contained in:
15
main.go
Normal file
15
main.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"goinim/send"
|
||||
"goinim/user"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func main() {
|
||||
http.HandleFunc("/registerverify", user.Registerverify)
|
||||
http.HandleFunc("/register", user.Userregister)
|
||||
http.HandleFunc("/login", user.Userlogin)
|
||||
http.HandleFunc("/fasong", send.Fasong)
|
||||
http.ListenAndServe("[::]:8081", nil)
|
||||
}
|
||||
Reference in New Issue
Block a user