blob: 209ddaacec6089822f5c60e294313b477bc9a7e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package api
import "net/http"
// Run adds Handlers to default http listener for API
func Run() {
http.HandleFunc("/api/contents", Record(CORS(Gzip(contentsHandler))))
http.HandleFunc("/api/content", Record(CORS(Gzip(contentHandler))))
http.HandleFunc("/api/content/create", Record(CORS(createContentHandler)))
http.HandleFunc("/api/content/update", Record(CORS(updateContentHandler)))
http.HandleFunc("/api/content/delete", Record(CORS(deleteContentHandler)))
http.HandleFunc("/api/search", Record(CORS(searchContentHandler)))
}
|