TezzNative v1.1.0 is hardening toward production. View roadmap

Framework

TezzApi

API route tables, CRUD helpers, TNXB payloads, and service contracts.

Beta

Production boundary

This framework is documented with a maturity label. Stable applications should pin SDK versions and add smoke tests before relying on beta or experimental behavior.

  • Use explicit imports.
  • Track platform behavior in release notes.
  • Report failures through `/support/` or CLI report forms.
TezzApi example
import "tezzapi"

fn main() -> int:
  api:*TezzApi = tezzapi.api_new()
  tezzapi.api_route(api, "GET", "/health", health_handler)
  ret 0