mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
22 lines
364 B
Go
22 lines
364 B
Go
package notFoundUi
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"net/http"
|
|
)
|
|
|
|
func WriteNotFound(w http.ResponseWriter) {
|
|
if data, err := FS.ReadFile("index.html"); err == nil {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
n, err := w.Write(data)
|
|
if n != len(data) {
|
|
logrus.Errorf("short write")
|
|
return
|
|
}
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
return
|
|
}
|
|
}
|
|
}
|