You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+232-31
Original file line number
Diff line number
Diff line change
@@ -42,10 +42,7 @@ It is also a component library of [Simple Robot v4][simbot4 gh] (simbot), which
42
42
With the capabilities provided by the simbot core library, it can support more advanced encapsulation,
43
43
as well as component collaboration, Spring support, and more.
44
44
45
-
It can be used as aid as a low-level API/SDK dependency or as a lightweight framework
46
-
that can be developed quickly with the help of the simbot core library!
47
-
48
-
Serialization and network requests are based on [Kotlin serialization](https://github.com/Kotlin/kotlinx.serialization) and [Ktor](https://ktor.io/).
45
+
> Serialization and network requests are based on [Kotlin serialization](https://github.com/Kotlin/kotlinx.serialization) and [Ktor](https://ktor.io/).
49
46
50
47
## Documentation
51
48
@@ -54,55 +51,259 @@ Serialization and network requests are based on [Kotlin serialization](https://g
54
51
-**API Documentation**: [**The KDoc of Telegram Component**](https://docs.simbot.forte.love/components/telegram) in the [**document guide site**](https://docs.simbot.forte.love).
55
52
-[**Communities**](https://simbot.forte.love/communities.html): Have fun interacting with us and other developers!
56
53
57
-
## Modules
58
-
### ⭐ Type module
54
+
## Setup
55
+
56
+
To use the simbot component library, you first need to add the core implementation of simbot
57
+
(such as the core library (`simbot-core`) or Spring Boot starter (`simbot-core-spring-boot-starter`)),
58
+
and then add the component library dependencies of the Telegram (`simbot-component-telegram-core`).
59
+
60
+
> [!note]
61
+
> The version of the simbot core implementation library (`SIMBOT_VERSION` below)
62
+
> goes [here](https://github.com/simple-robot/simpler-robot/releases) for reference;
63
+
>
64
+
> Telegram Component library versions (`VERSION` below) go to the [release](https://github.com/simple-robot/simbot-component-telegram/releases) reference.
65
+
66
+
**With simbot core**
67
+
68
+
### Gradle
69
+
70
+
`build.gradle.kts`
59
71
60
-
Provides definitions for most types in Telegram and supports serialization based on
0 commit comments