@@ -58,8 +58,8 @@ LPFCP Java implements the LPFCP protocol — check out the [LPFCP protocol speci
5858** Gradle** :
5959``` kotlin
6060dependencies {
61- implementation(" io.github.likespro:lpfcp-core:1.0 .0" ) // Core features: getProcessor, .processRequest, etc.
62- implementation(" io.github.likespro:lpfcp-ktor:1.0 .0" ) // Integration with Ktor: lpfcpServer, Route.lpfcp, etc.
61+ implementation(" io.github.likespro:lpfcp-core:1.1 .0" ) // Core features: getProcessor, .processRequest, etc.
62+ implementation(" io.github.likespro:lpfcp-ktor:1.1 .0" ) // Integration with Ktor, for servers : lpfcpServer, Route.lpfcp, etc.
6363}
6464```
6565
@@ -69,14 +69,14 @@ dependencies {
6969<dependency >
7070 <groupId >io.github.likespro</groupId >
7171 <artifactId >lpfcp-core</artifactId >
72- <version >1.0 .0</version >
72+ <version >1.1 .0</version >
7373</dependency >
7474
75- <!-- Integration with Ktor: lpfcpServer, Route.lpfcp, etc. -->
75+ <!-- Integration with Ktor, for servers : lpfcpServer, Route.lpfcp, etc. -->
7676<dependency >
7777 <groupId >io.github.likespro</groupId >
7878 <artifactId >lpfcp-ktor</artifactId >
79- <version >1.0 .0</version >
79+ <version >1.1 .0</version >
8080</dependency >
8181```
8282
@@ -90,7 +90,7 @@ interface Calculator {
9090```
9191
9292### 2. Implement & Annotate (Server Code)
93- Annotate your implementation class with ` @LPFCP.ExposedFunction ` :
93+ Annotate your implementation class functions with ` @LPFCP.ExposedFunction ` :
9494``` kotlin
9595class CalculatorImpl : Calculator {
9696 @LPFCP.ExposedFunction
0 commit comments