Skip to content

Cosmius/gugugu

Repository files navigation

Gugugu

Build

Gugugu is a non-opinionated data serialization and RPC (Remote Procedure Call) framework. Non-opinionated means gugugu assumes very little on your implementation. You can serialize your data with JSON, XML... or your own serialization format, and communicate with any protocol you like.

The definition syntax is a strict subset of Haskell.

module Hello where


-- The content after double-dash is ignored.

fold :: FoldRequest -> IO Int32

data FoldRequest
  = FoldRequest
    { values  :: List Int32
    , initial :: Int32
    , op      :: Operation
    }

data Operation
  = Add
  | Mul

Documentation