controls-kt/controls-magix-client
2023-06-10 16:55:00 +03:00
..
src/commonMain/kotlin/space/kscience/controls/client Add device lifecycle state 2023-06-10 16:55:00 +03:00
build.gradle.kts Stress test demo 2023-05-08 15:39:34 +03:00
README.md Documentation and DeviceSpec fix 2023-05-08 21:25:25 +03:00

Module controls-magix-client

Magix service for binding controls devices (both as RPC client and server

Usage

Artifact:

The Maven coordinates of this project are space.kscience:controls-magix-client:0.1.1-SNAPSHOT.

Gradle Groovy:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'space.kscience:controls-magix-client:0.1.1-SNAPSHOT'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:controls-magix-client:0.1.1-SNAPSHOT")
}