# # Autogenerated by Thrift # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # @generated # import folly.iobuf as _fbthrift_iobuf import typing as _typing from thrift.py3.server import RequestContext, ServiceInterface from abc import abstractmethod, ABCMeta import module.types as _module_types _RaiserInterfaceT = _typing.TypeVar('_RaiserInterfaceT', bound='RaiserInterface') class RaiserInterface( ServiceInterface, metaclass=ABCMeta, ): @abstractmethod async def doBland( self ) -> None: ... @abstractmethod async def doRaise( self ) -> None: ... @abstractmethod async def get200( self ) -> str: ... @abstractmethod async def get500( self ) -> str: ... pass