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

5 lines
123 B
Kotlin
Raw Normal View History

2021-12-20 17:26:07 +07:00
package com.cubetiqs.web.infrastructure.component
interface BaseFunctionComponent<I, O> {
fun execute(input: I?): O?
}