11 lines
188 B
Go
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
|
|
}
|