smotastic / vue-clean-architecture

Hello World App showcasing Clean Architecture with Vue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Base UseCase

smotastic opened this issue · comments

commented

interface für usecase definieren
interface UseCase {
execute(Command):Either<T, Failure>
}

commented

UseCaseCommand auch beachten!