Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 876 Bytes

README.template.md

File metadata and controls

43 lines (28 loc) · 876 Bytes

{{ ossHeader }}

Packages

The Kotlin SDK is available on Maven Central:

Gradle

dependencies {
    implementation("software.momento.kotlin:sdk:0.1.3")
}

Maven

<dependency>
    <groupId>software.momento.kotlin</groupId>
    <artifactId>sdk</artifactId>
    <version>0.1.3</version>
</dependency>

Usage

{% include "./examples/src/main/kotlin/software/momento/example/doc_examples/ReadmeExample.kt" %}

Getting Started and Documentation

Documentation is available on the Momento Docs website.

Examples

Working example projects, with all required build configuration files, are available in the examples subdirectory.

Developing

If you are interested in contributing to the SDK, please see the CONTRIBUTING docs.

{{ ossFooter }}