feat(smalltrip): new smalltrip package

This is a new package to reimplement the groute package with new
improvements and a better API
This commit is contained in:
Guz
2025-02-24 08:03:07 -03:00
commit 4fac484f1f
4 changed files with 301 additions and 0 deletions

5
middleware/middleware.go Normal file
View File

@@ -0,0 +1,5 @@
package middleware
import "net/http"
type Middleware = func(next http.Handler) http.Handler