Skip to content

Instantly share code, notes, and snippets.

@NikCapko
Created September 15, 2023 19:46
Show Gist options
  • Save NikCapko/8f8da42498babd75ee1bafe406938532 to your computer and use it in GitHub Desktop.
Save NikCapko/8f8da42498babd75ee1bafe406938532 to your computer and use it in GitHub Desktop.
UseCase Template
package ${PACKAGE_NAME};
import javax.inject.Inject
internal class ${NAME}UseCase @Inject constructor(
) {
operator fun invoke() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment