diff options
author | xengineering <me@xengineering.eu> | 2024-02-15 20:18:19 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-02-15 20:18:19 +0100 |
commit | bfd936ab717c6d4e4e50bbd0f797c3d1fc7eda42 (patch) | |
tree | c68edff3405c750d9f6040494ce6edc9dd9f54c8 /view | |
parent | 75c594b778c5c6d51883a45da735a67761952470 (diff) | |
download | ceres-bfd936ab717c6d4e4e50bbd0f797c3d1fc7eda42.tar ceres-bfd936ab717c6d4e4e50bbd0f797c3d1fc7eda42.tar.zst ceres-bfd936ab717c6d4e4e50bbd0f797c3d1fc7eda42.zip |
view: Add HTTP 204 handler for /favicon.ico
Otherwise e.g. the Firefox browser throws an error on the console.
Diffstat (limited to 'view')
-rw-r--r-- | view/favicon.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/view/favicon.go b/view/favicon.go new file mode 100644 index 0000000..65bfaef --- /dev/null +++ b/view/favicon.go @@ -0,0 +1,9 @@ +package view + +import ( + "net/http" +) + +func Favicon(w http.ResponseWriter, r *http.Request) { + w.WriteHeader(http.StatusNoContent) +} |