platform
Full application platform that includes graceful shutdown.
graceful adds a standalone graceful shutdown manager to your Go service for clean process exits that don’t drop in-flight requests.
Use graceful when you need controlled shutdown without the full platform capability. Graceful shutdown is essential for HTTP servers (drain in-flight requests), Kafka consumers (prevent rebalancing storms), and background workers (complete in-flight jobs).
Conflicts with: platform
verikt new my-service --language go --cap graceful# or add to an existing service:verikt add gracefulplatform
worker
kafka-consumer