Setup
Add ktorceful-core dependency to your application
build.gradle.kts
dependencies {
implementation("dev.herrrta.ktorceful:ktorceful-core:x.x.x")
// OPTIONAL! if using authentication in ktor
implementation("dev.herrrta.ktorceful:ktorceful-auth:x.x.x")
}
../gradle/libs.versions.toml
[versions]
ktorceful = "x.x.x"
...
[libraries]
ktorceful-core = { module = "dev.herrrta.ktorceful:ktorceful-core", version.ref = "ktorceful" }
# OPTIONAL! if using authentication in ktor
ktorceful-auth = { module = "dev.herrrta.ktorceful:ktorceful-auth" }
...
build.gradle.kts
dependencies {
implementation(libs.ktorceful.core)
implementation(libs.ktorceful.auth)
}