lotus/provider/lpweb/api/routes.go

14 lines
348 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 (
2023-12-19 15:12:45 +00:00
"github.com/gorilla/mux"
2023-12-12 05:16:57 +00:00
"github.com/filecoin-project/lotus/cmd/lotus-provider/deps"
2024-01-13 12:47:22 +00:00
"github.com/filecoin-project/lotus/provider/lpweb/api/debug"
2023-12-12 05:16:57 +00:00
)
func Routes(r *mux.Router, deps *deps.Deps) {
debug.Routes(r.PathPrefix("/debug").Subrouter(), deps)
}