apistruct: Check tags in tests

This commit is contained in:
Łukasz Magiera
2020-04-24 02:41:18 +02:00
parent 88ccd73139
commit a28e64227b
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
package apistruct
import "testing"
func TestPermTags(t *testing.T) {
_ = PermissionedFullAPI(&FullNodeStruct{})
_ = PermissionedStorMinerAPI(&StorageMinerStruct{})
_ = PermissionedWorkerAPI(&WorkerStruct{})
}