13 lines
355 B
Go
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)
|
||
|
}
|