spring-web-modules/api/src/main/kotlin/com/cubetiqs/web/infrastructure/component/BaseFunctionComponent.kt

5 lines
123 B
Kotlin

package com.cubetiqs.web.infrastructure.component
interface BaseFunctionComponent<I, O> {
fun execute(input: I?): O?
}