lotus/cmd/lotus-provider/web/api/routes.go

13 lines
355 B
Go
Raw Normal View History

2023-12-12 05:16:57 +00:00
// 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)
}