-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3e2479
commit de27e63
Showing
5 changed files
with
45 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [Unreleased] | ||
- No unreleased changes so far | ||
|
||
## [0.1] - 2025-01-25 | ||
Initial release, let's go and give this to the public to try out... | ||
|
||
[unreleased]: https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/compare/v0.1...HEAD | ||
|
||
[0.1]: https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/releases/tag/v0.1 |
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
Empty file.
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,26 @@ | ||
"""Module containing the commandline interface for the carconnectivity package.""" | ||
from __future__ import annotations | ||
from typing import TYPE_CHECKING | ||
|
||
import logging | ||
|
||
from carconnectivity.carconnectivity_base import CLI | ||
|
||
from carconnectivity_plugins.abrp._version import __version__ | ||
|
||
if TYPE_CHECKING: | ||
pass | ||
|
||
LOG = logging.getLogger("carconnectivity-abrp") | ||
|
||
|
||
def main() -> None: | ||
""" | ||
Entry point for the car connectivity abrp application. | ||
This function initializes and starts the command-line interface (CLI) for the | ||
car connectivity application using the specified logger and application name. | ||
""" | ||
cli: CLI = CLI(logger=LOG, name='carconnectivity-abrp', description='Commandline Interface to interact with Car Services of various brands', | ||
subversion=__version__) | ||
cli.main() |