You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
327B

  1. module IrcBot.RemoteUploader where
  2. import System.Process
  3. uploadLocalFile:: String -> IO String
  4. uploadLocalFile filePath =
  5. do
  6. let command = "curl"
  7. let params = "file=@"++ filePath
  8. readProcess command ["-F",params,"0x0.st"] ""