blob: abb8fe74d186b25f950a7b07017361146185c116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Lib
( someFunc
) where
import Text.Regex.TDFA
import Plugin
someFunc :: IO ()
someFunc = do
let message = "75ac7b18a009ffe7a77a17a61d95c01395f36b44"
Just plugin = realMatchPlugin message
putStrLn $ performPlugin plugin message
|