25 lines
498 B
Go
25 lines
498 B
Go
|
package v0api
|
||
|
|
||
|
import (
|
||
|
"github.com/filecoin-project/lotus/api"
|
||
|
)
|
||
|
|
||
|
type Common = api.Common
|
||
|
type CommonStruct = api.CommonStruct
|
||
|
|
||
|
type Gateway = api.Gateway
|
||
|
|
||
|
type StorageMiner = api.StorageMiner
|
||
|
type StorageMinerStruct = api.StorageMinerStruct
|
||
|
|
||
|
type Worker = api.Worker
|
||
|
type WorkerStruct = api.WorkerStruct
|
||
|
|
||
|
func PermissionedStorMinerAPI(a StorageMiner) StorageMiner {
|
||
|
return api.PermissionedStorMinerAPI(a)
|
||
|
}
|
||
|
|
||
|
func PermissionedWorkerAPI(a Worker) Worker {
|
||
|
return api.PermissionedWorkerAPI(a)
|
||
|
}
|