lotus/cmd/lotus-provider/web/api/routes.go
Andrew Jackson (Ajax) 4161c270d7 debugWeb 1
2023-12-11 23:16:57 -06:00

13 lines
355 B
Go

// Package api provides the HTTP API for the lotus provider web gui.
package api
import (
"github.com/filecoin-project/lotus/cmd/lotus-provider/deps"
"github.com/filecoin-project/lotus/cmd/lotus-provider/web/api/debug"
"github.com/gorilla/mux"
)
func Routes(r *mux.Router, deps *deps.Deps) {
debug.Routes(r.PathPrefix("/debug").Subrouter(), deps)
}