mmg/handlers.go

14 lines
215 B
Go
Raw Normal View History

2013-05-08 22:57:52 -07:00
package main
import (
"net/http"
)
func attempt(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("hello"))
}
func problem(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("hello"))
}