--
--   Send a message to the connected stargate's interface
--
--   Usage:
--      msgsend text
--

dofile("config")
dofile("compat")
args = {...}

function main()
  sg.sendMessage(args[1])
end

try(main)
