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