This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/multiple backends + rename (#10)
install optional deps for workflows oauth api for offline backend - companion PR to OpenVoiceOS/ovos-personal-backend#36 add oauth, companion PR OpenVoiceOS/ovos-personal-backend#36 split oauth api from device api, split metrics api from device api split dataset api from device api split email api from device api offline backend support split backends into their own modules for cleanliness rename to ovos-backend-client add database helper + compat with device db personal backend UI comparison table in readme optional requirements.txt handle missing timezone data rename + AbstractBackend support api registry concept signal breaking change in versioning
- Loading branch information
Showing
34 changed files
with
2,324 additions
and
768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from ovos_backend_client.api import DeviceApi, WolframAlphaApi, OpenWeatherMapApi, STTApi, GeolocationApi | ||
from ovos_backend_client.cloud import SeleneCloud, SecretSeleneCloud | ||
from ovos_backend_client.config import RemoteConfigManager | ||
from ovos_backend_client.pairing import is_paired, has_been_paired, check_remote_pairing, PairingManager | ||
from ovos_backend_client.settings import RemoteSkillSettings |
Oops, something went wrong.