loadtesting/main.go
Cast AID Agent 60785a52f5 Add SMS API load testing service for Cast
Go service that load tests the Cast SMS/OTP API with configurable
concurrent threads, target RPS, ramp-up period, and message parts.
Features live stats, final report with SMS parts tracking, and
config warnings for suboptimal test parameters.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 10:19:20 +01:00

12 lines
147 B
Go

package main
import (
"cast-loadtest/internal/config"
"cast-loadtest/internal/runner"
)
func main() {
cfg := config.Load()
runner.Run(cfg)
}