Quickstart

Firstly, you need to install the needed dependencies: lpfcp-core on both client and server side, lpfcp-ktor — only on the server side (if you want to use built-in LPFCP integration with Ktor):

dependencies {
    implementation("io.github.likespro:lpfcp-core:1.0.0") // Core features: getProcessor, .processRequest, etc.
    implementation("io.github.likespro:lpfcp-ktor:1.0.0") // Integration with Ktor: lpfcpServer, Route.lpfcp, etc.
}

Last updated