Talking about "fetch something use-case", do you h...
# android-architecture
g
Talking about "fetch something use-case", do you have these usecases commands like? One operation per usecase? I can understand having something like "feauture-case", maybe even with some local state, where, for example, you group all the authentication calls into
AuthUseCase
. But having one operation per usecase (i.e.
LoginUsecase
,
LogoutUsecase
,
RefreshSessionUsecase
, etc) seems redundant, because you can as well just pull the corresponding Repository method. What's your comment on the matter?