10 lines
214 B
Go
10 lines
214 B
Go
package apistruct
|
|
|
|
import "testing"
|
|
|
|
func TestPermTags(t *testing.T) {
|
|
_ = PermissionedFullAPI(&FullNodeStruct{})
|
|
_ = PermissionedStorMinerAPI(&StorageMinerStruct{})
|
|
_ = PermissionedWorkerAPI(&WorkerStruct{})
|
|
}
|