12 lines
272 B
Go
12 lines
272 B
Go
package router
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"gitnet.fr/deblan/owncast-webhook/internal/web/controller/chat"
|
|
"gitnet.fr/deblan/owncast-webhook/internal/web/controller/webhook/owncast"
|
|
)
|
|
|
|
func RegisterControllers(e *echo.Echo) {
|
|
chat.New(e)
|
|
owncast.New(e)
|
|
}
|