(left: Registration, right: Registration)
| 29 | type Registration = typeof Registration.Type |
| 30 | |
| 31 | function sameRegistration(left: Registration, right: Registration) { |
| 32 | return left.id === right.id && left.version === right.version && left.url === right.url && left.pid === right.pid |
| 33 | } |
| 34 | |
| 35 | export const layer = Layer.effect( |
| 36 | Service, |