grafana-sms-alert/main.fnl
Daniel Barlow 3bb143b6f4 SMS sending works for basic chars
won't send { } [ ]: hypothesis, because these characters can't
be represented in one byte of the GSM charset
2022-09-15 22:09:25 +01:00

14 lines
229 B
Fennel

(local server (require :server))
(local handler (require :handler))
(local sms (require :sms))
(sms.send "+447000123456" "test 123")
(os.exit 0)
(doto (server.new handler.handle)
(: :listen)
(: :loop 60))
(io.stdin:read)