14 lines
215 B
Go
14 lines
215 B
Go
|
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"))
|
||
|
}
|