An ACLProvider performs access control checks when invoking chaincode.
| 34 | // An ACLProvider performs access control checks when invoking |
| 35 | // chaincode. |
| 36 | type ACLProvider interface { |
| 37 | CheckACL(resName string, channelID string, idinfo any) error |
| 38 | } |
| 39 | |
| 40 | // A Registry is responsible for tracking handlers. |
| 41 | type Registry interface { |
nothing calls this directly
no outgoing calls
no test coverage detected