lotus/api/api_lp.go
2023-12-03 00:40:01 -06:00

11 lines
188 B
Go

package api
import "context"
type LotusProvider interface {
Version(context.Context) (Version, error) //perm:admin
// Trigger shutdown
Shutdown(context.Context) error //perm:admin
}