packages feed

protocol-buffers-0.0.1: src/DescriptorProtos/ServiceDescriptorProto.hs

module DescriptorProtos.ServiceDescriptorProto
  (ServiceDescriptorProto(..))
 where

import ProtocolBuffers.Header

import qualified DescriptorProtos.MethodDescriptorProto as DescriptorProtos(MethodDescriptorProto)
import qualified DescriptorProtos.ServiceOptions as DescriptorProtos(ServiceOptions)

data ServiceDescriptorProto = ServiceDescriptorProto
    { name :: Maybe String
    , method :: Seq DescriptorProtos.MethodDescriptorProto
    , options :: Maybe DescriptorProtos.ServiceOptions
    }