guesstimate/server/internal/route/mount.go

13 lines
227 B
Go
Raw Normal View History

package route
import (
"forge.cadoles.com/wpetit/guesstimate/internal/config"
"github.com/go-chi/chi"
)
func Mount(r *chi.Mux, config *config.Config) error {
r.Get("/ws/{projectId}", handleProjectWebsocket)
return nil
}