stellar-veritas/bundled/Network/ONCRPC/XDR.hs
2026-01-25 02:27:22 +01:00

13 lines
371 B
Haskell

-- | XDR: External Data Representation as described in RFC4506
--
-- This module should be imported qualified, e.g., as @XDR@.
module Network.ONCRPC.XDR
( module Network.ONCRPC.XDR.Types
, module Network.ONCRPC.XDR.Array
, module Network.ONCRPC.XDR.Serial
) where
import Network.ONCRPC.XDR.Types
import Network.ONCRPC.XDR.Array
import Network.ONCRPC.XDR.Serial