Skip to content

Commit 7674e7f

Browse files
chore: make UseCase interface functional
1 parent f2c241d commit 7674e7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/usecase/UseCase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package usecase
1212
* The interface of a domain use case.
1313
* @param E the return type of the use case.
1414
*/
15-
interface UseCase<out E> {
15+
fun interface UseCase<out E> {
1616

1717
/** Execute the use case. */
1818
fun execute(): E

0 commit comments

Comments
 (0)