added a notify system

This commit is contained in:
2026-01-26 00:23:46 +11:00
parent 76c8a592af
commit 5781aa523c
7 changed files with 1364 additions and 11 deletions

View File

@@ -13,3 +13,7 @@ func (w *wrappedWriter) WriteHeader(statusCode int) {
w.ResponseWriter.WriteHeader(statusCode)
w.statusCode = statusCode
}
func (w *wrappedWriter) Unwrap() http.ResponseWriter {
return w.ResponseWriter
}