diff options
Diffstat (limited to 'HsBot/Logics')
| -rw-r--r-- | HsBot/Logics/Dummy.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/HsBot/Logics/Dummy.hs b/HsBot/Logics/Dummy.hs new file mode 100644 index 0000000..a873f8a --- /dev/null +++ b/HsBot/Logics/Dummy.hs @@ -0,0 +1,10 @@ +module HsBot.Logics.Dummy (dummyRun) where + +import HsBot.Base.Env + +dummyRun :: String -> SendMessage -> Env -> IO Env +dummyRun str sendMessage env = do + --sendMessage "Hello World" + putStrLn str + return (env) + |
