diff --git a/api/article.go b/api/article.go index 571b57e..065b040 100644 --- a/api/article.go +++ b/api/article.go @@ -19,6 +19,8 @@ import ( func Article(w http.ResponseWriter, r *http.Request) { switch r.Method { + case http.MethodGet: + articleGet(w, r) case http.MethodPost: articlePost(w, r) case http.MethodDelete: