()
| 32 | |
| 33 | interface UserStoreShape { |
| 34 | migrate(): Effect.Effect<void, UserStoreError> |
| 35 | create(name: string): Effect.Effect<void, UserStoreError> |
| 36 | rename(from: string, to: string): Effect.Effect<void, UserStoreError> |
| 37 | list(): Effect.Effect<User[], UserStoreError> |
no outgoing calls
no test coverage detected