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