| 18 | } |
| 19 | |
| 20 | Coordination::ACLs getDefaultACLs() |
| 21 | { |
| 22 | Coordination::ACL acl; |
| 23 | acl.permissions = Coordination::ACL::All; |
| 24 | acl.scheme = "world"; |
| 25 | acl.id = "anyone"; |
| 26 | return {std::move(acl)}; |
| 27 | } |
| 28 | |
| 29 | namespace |
| 30 | { |
no outgoing calls
no test coverage detected