1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 23:52:57 +00:00
cloudkeys-go/assets.go

20 lines
374 B
Go
Raw Normal View History

package main
import (
"mime"
"net/http"
"path"
"path/filepath"
)
func serveAssets(res http.ResponseWriter, r *http.Request) {
data, err := Asset(path.Join("dist", r.RequestURI[1:]))
if err != nil {
http.Error(res, "Not found", http.StatusNotFound)
return
}
res.Header().Set("Content-Type", mime.TypeByExtension(filepath.Ext(r.RequestURI)))
res.Write(data)
}