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>
12 lines
147 B
Go
12 lines
147 B
Go
package main
|
|
|
|
import (
|
|
"cast-loadtest/internal/config"
|
|
"cast-loadtest/internal/runner"
|
|
)
|
|
|
|
func main() {
|
|
cfg := config.Load()
|
|
runner.Run(cfg)
|
|
}
|