1
0
Fork 0

Simple http server example

This commit is contained in:
Stephen M. McQuay 2012-08-27 22:45:05 -06:00
parent 697fe25cfe
commit bea638aa28
1 changed files with 19 additions and 0 deletions

19
http-hello/server.go Normal file
View File

@ -0,0 +1,19 @@
package main
import (
"fmt"
"net/http"
)
type Hello struct{}
func (h Hello) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Hello world")
}
func main() {
var h Hello
http.ListenAndServe("localhost:4000", h)
}