chapi.app.frontend.identify.HttpIdentify.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chapi-application Show documentation
Show all versions of chapi-application Show documentation
Chapi is A common language meta information convertor, convert different languages to same meta-data model
package chapi.app.frontend.identify
import chapi.app.frontend.ContainerDemand
import chapi.domain.core.CodeCall
import chapi.domain.core.CodeImport
interface HttpIdentify {
fun isMatch(call: CodeCall, imports: Array): Boolean
fun convert(call: CodeCall): ContainerDemand
}