1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/routes/handler.go
2023-03-03 20:53:18 +01:00

10 lines
118 B
Go

package routes
import (
"github.com/go-chi/chi/v5"
)
type Handler interface {
RegisterRoutes(router chi.Router)
}