1 package internalapi 2 3 type WazeroOnly interface { 4 wazeroOnly() 5 } 6 7 type WazeroOnlyType struct{} 8 9 func (WazeroOnlyType) wazeroOnly() {} 10
View as plain text