refactor(routing): use pointer

This commit is contained in:
Mark Bailey 2025-09-06 18:36:42 -04:00
parent b306d2cb31
commit 04842fd38d

View File

@ -38,7 +38,7 @@ func NewRouteInfo(method, path, description, title string) (*RouteInfo, error) {
type routeInfoKey struct{}
type Router struct {
chi.Mux
*chi.Mux
cache RouteCacher
cacheTTL time.Duration
}