Golang으로 api 만들기 실습 진행중 디버그 콘솔창에 문제가 생김 코드는 아래와 같다. package main import ( "fmt" "net/http" ) type fooHandler struct{} func (f *fooHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Hello Foo!") } func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Hello World") }) http.HandleFunc("/bar", func(w http.ResponseWriter, r *http.Req..