]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - src/Graylog/UDP.hs
Defined Graylog type to contain connection informaiton.
[github/fretlink/haskell-graylog.git] / src / Graylog / UDP.hs
CommitLineData
15981d57
A
1module Graylog.UDP
2 ( Graylog (..)
3 , sendLog
4
2ff46fce 5 , module Export
15981d57
A
6 ) where
7
2ff46fce
A
8import Graylog.Gelf as Export
9import Graylog.Types as Export
15981d57
A
10
11sendLog :: Graylog -> GELF -> IO ()
12sendLog glog msg = undefined
2ff46fce 13