Update the template to use the singular form for Event interface.

This commit is contained in:
Benoit Marty 2025-11-07 13:39:56 +01:00
parent cffd4c31c9
commit b37979d003
4 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}#end
// TODO Add your events or remove the file completely if no events
sealed interface ${NAME}Events {
data object MyEvent: ${NAME}Events
sealed interface ${NAME}Event {
data object MyEvent: ${NAME}Event
}