# -*- coding: utf-8 -*- # django-jsonrpc-core | (c) 2022-present Tomek Wójcik | MIT License from .decorators import register_method # noqa from .exceptions import ( # noqa BaseJSONRPCError, JSONRPCAccessDeniedError, JSONRPCInternalError, JSONRPCParseError, JSONRPCSerializerError, ) from .executor import Executor # noqa from .serializer import JSONRPCSerializer # noqa __version__ = '1.0.0'