Добавлен обработчик NotFound

Исправлена опечатка в тесте
Разделена логика метода BuildNonElyTexturesHash
This commit is contained in:
ErickSkrauch
2016-07-06 14:45:14 +03:00
parent c4cd95cddc
commit 3d65529d2e
4 changed files with 26 additions and 3 deletions

18
lib/routes/NotFound.go Normal file
View File

@@ -0,0 +1,18 @@
package routes
import (
"net/http"
"encoding/json"
)
func NotFound(w http.ResponseWriter, r *http.Request) {
json, _ := json.Marshal(map[string]string{
"status": "404",
"message": "Not Found",
"link": "http://docs.ely.by",
})
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusNotFound)
w.Write(json)
}