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 }