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.
}<!-- Core features: getProcessor, .processRequest, etc. -->
<dependency>
<groupId>io.github.likespro</groupId>
<artifactId>lpfcp-core</artifactId>
<version>1.0.0</version>
</dependency>
<!-- Integration with Ktor: lpfcpServer, Route.lpfcp, etc. -->
<dependency>
<groupId>io.github.likespro</groupId>
<artifactId>lpfcp-ktor</artifactId>
<version>1.0.0</version>
</dependency>Last updated