mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
10 lines
118 B
Go
10 lines
118 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/go-chi/chi/v5"
|
|
)
|
|
|
|
type Handler interface {
|
|
RegisterRoutes(router chi.Router)
|
|
}
|