Skip to content

Commit

Permalink
feat(event_handler): add EventHandler for non-http handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsavio committed Jul 30, 2019
1 parent e1f6a95 commit 7c3eca8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lambda_handlers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
InternalServerError,
)
from lambda_handlers.version import __version__ # noqa
from lambda_handlers.handlers import HTTPHandler, LambdaHandler # noqa
from lambda_handlers.handlers import ( # noqa
HTTPHandler,
EventHandler,
LambdaHandler,
)
from lambda_handlers.response import cors_headers, response_builder # noqa
from lambda_handlers.formatters import input_format, output_format # noqa
from lambda_handlers.validators import jsonschema, marshmallow # noqa

0 comments on commit 7c3eca8

Please sign in to comment.