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