12 lines
128 B
Go
12 lines
128 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
|
|
http.HandleFunc("/", RequestHandler)
|
|
http.ListenAndServe(":3333", nil)
|
|
}
|