Draft: poop

This commit is contained in:
2025-11-10 13:16:29 +08:00
parent dbd2ed6469
commit 68c6a63dfb
18 changed files with 550 additions and 45 deletions

14
middlewares/nmsl.go Normal file
View File

@@ -0,0 +1,14 @@
package middlewares
import (
"inp2025/tcp"
"go.uber.org/zap"
)
func NMSL(next tcp.Handler) tcp.Handler {
return func(w tcp.ResponseWriter, req *tcp.Request) error {
zap.L().Info("nmsl")
return next(w, req)
}
}