33 lines
610 B
Markdown
33 lines
610 B
Markdown
# Module magix-server
|
|
|
|
A magix event loop implementation in Kotlin. Includes HTTP/SSE and RSocket routes.
|
|
|
|
## Usage
|
|
|
|
## Artifact:
|
|
|
|
The Maven coordinates of this project are `space.kscience:magix-server:0.1.1-SNAPSHOT`.
|
|
|
|
**Gradle Groovy:**
|
|
```groovy
|
|
repositories {
|
|
maven { url 'https://repo.kotlin.link' }
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'space.kscience:magix-server:0.1.1-SNAPSHOT'
|
|
}
|
|
```
|
|
**Gradle Kotlin DSL:**
|
|
```kotlin
|
|
repositories {
|
|
maven("https://repo.kotlin.link")
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("space.kscience:magix-server:0.1.1-SNAPSHOT")
|
|
}
|
|
```
|