TezzNative v1.1.0 is hardening toward production. View roadmap

Framework

TezzServe

HTTP server middleware, tenant policy checks, and production service loops.

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.
TezzServe example
import "tezzserve"

fn handler(ctx:*ServeCtx):
  tezzserve.response(ctx, 200, "ok")

fn main():
  tezzserve.listen(8080, handler)