Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introducing Runtime layer #41

Merged
merged 4 commits into from
Oct 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ask-sdk-core/.coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ include =
ask_sdk_core/*
exclude_lines =
if typing.TYPE_CHECKING:
pass
pass
raise NotImplementedError
3 changes: 2 additions & 1 deletion ask-sdk-core/ask_sdk_core/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@
__author_email__ = 'ask-sdk-dynamic@amazon.com'
__license__ = 'Apache 2.0'
__keywords__ = ['ASK SDK', 'Alexa Skills Kit', 'Alexa', 'Core']
__install_requires__ = ["six", "requests", "python_dateutil", "ask-sdk-model"]
__install_requires__ = ["six", "requests", "python_dateutil",
"ask-sdk-model", "ask-sdk-runtime"]

224 changes: 0 additions & 224 deletions ask-sdk-core/ask_sdk_core/dispatch.py

This file was deleted.

5 changes: 2 additions & 3 deletions ask-sdk-core/ask_sdk_core/dispatch_components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

from .request_components import (
AbstractRequestHandler, AbstractRequestInterceptor,
AbstractResponseInterceptor, HandlerAdapter, RequestMapper,
RequestHandlerChain)
AbstractResponseInterceptor)
from .exception_components import (
AbstractExceptionHandler, ExceptionMapper)
AbstractExceptionHandler)
Loading