All-in-one solution.
Coupled with its Android Client.
go build -o otp-panel *.go
GIN_MODE=release REDIS_ADDR=<address>:<port> REDIS_PASS=<password> ./otp-panel
curl -XPOST -H "Content-type: application/json" -d '{
"message": "Your OTP is 390428",
"sender": "+1928731893",
"recipient": "+1092843098"
}' 'http://localhost:8080/api/publish'
Invoke-RestMethod -Method POST -Uri 'http://localhost:8080/api/publish' -Verbose:$false -Headers @{
'Content-type' = 'application/json'
} -Body '{"message": "Your OTP is 390428","sender": "+1928731893","recipient": "+1092843098"}'