[바미] Go - RESTful API(GET)
·
프로그래밍(Web)/Golang
먼저 기본틀을 만들고 시작합니다. 그 전에 Handler를 만들어 주어야 하는데 'myapp'이라는 폴더에 app.go라는 파일에 Handler를 만들어줍니다. myapp/app.go package myapp import "net/http" // NewHandler make a new myapp handler func NewHandler() http.Handler { mux := http.NewServeMux() return mux } main.go package main import ( "net/http" "./myapp" func main() { http.ListenAndServe(":3000", myapp.NewHandler()) } 이 상태에서 실행시키면 아무것도 뜨지 않는 것을 확인 할 수 있습..