blob: 0142dfb284b7c8899741602c025c4eb472186001 (
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 = matchPlugin message
putStrLn $ performPlugin plugin message
|