01 Kotlin Multiplatform

Write the
business code.

Implement a typed Kotlin service. Hosting, transport, clients, lifecycle, observability, and public API generation are handled around it.

ProductAccess.kt you write this
class ProductAccess(
  private val products: ProductRepository,
) : IProductAccess {
  override suspend fun filter(criteria: Criteria) =
    products.find(criteria)
}
  1. 01Host + lifecycle
  2. 02Typed client proxies
  3. 03Transport + context
  4. 04Health, logs + traces
  5. 05Gateway, OpenAPI + SDK

You own contracts

You own business behaviour

You get delivery infrastructure

You get operational tooling

02 / EXPLORE

A shorter path to the part you need.