scripts/mycroft/__init__.py
Go to the documentation of this file.
1 # Copyright 2017 Mycroft AI Inc.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15 from os.path import abspath, dirname, join
16 
17 from mycroft.api import Api
18 from mycroft.messagebus.message import Message
19 from mycroft.skills.context import adds_context, removes_context
20 from mycroft.skills.core import MycroftSkill, FallbackSkill, \
21  intent_handler, intent_file_handler
22 from mycroft.skills.intent_service import AdaptIntent
23 
24 MYCROFT_ROOT_PATH = abspath(join(dirname(__file__), '..'))


mycroft_ros
Author(s):
autogenerated on Mon Apr 26 2021 02:35:40