mirror of
https://github.com/zoriya/tide.git
synced 2026-08-15 18:43:19 +00:00
14 lines
196 B
Go
14 lines
196 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", func(resp http.ResponseWriter, req *http.Request) {
|
|
fmt.Println("test")
|
|
})
|
|
http.ListenAndServe(":7890", nil)
|
|
}
|