uidsonic.baku.0.9.24.source-code.BakuService.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of baku Show documentation
Show all versions of baku Show documentation
helps you focus your REST API back-end on the business logic
package com.github.fluidsonic.baku
import io.ktor.application.ApplicationCall
interface BakuService {
suspend fun createContext(): Context
suspend fun createTransaction(context: Context, call: ApplicationCall?): Transaction
suspend fun onStart(context: Context) {}
}