diff options
Diffstat (limited to 'system/api/server.go')
-rw-r--r-- | system/api/server.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/api/server.go b/system/api/server.go index 4468394..70add10 100644 --- a/system/api/server.go +++ b/system/api/server.go @@ -8,9 +8,9 @@ import ( func Run() { http.HandleFunc("/api/types", CORS(Record(typesHandler))) - http.HandleFunc("/api/posts", CORS(Record(postsHandler))) + http.HandleFunc("/api/contents", CORS(Record(postsHandler))) - http.HandleFunc("/api/post", CORS(Record(postHandler))) + http.HandleFunc("/api/content", CORS(Record(postHandler))) - http.HandleFunc("/api/external/posts", CORS(Record(externalPostsHandler))) + http.HandleFunc("/api/content/external", CORS(Record(externalPostHandler))) } |