12 lines
194 B
Go
12 lines
194 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", HelloServer)
|
|
http.ListenAndServe(":8080", nil)
|
|
}
|
|
|
|
func HelloServer(w http.ResponseWriter, r *http.Request) {}
|