boxyard 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
boxyard/__init__.py ADDED
File without changes
@@ -0,0 +1,3 @@
1
+ from . import main
2
+ from .app import app
3
+ from .multi_sync import cli_multi_sync
boxyard/_cli/app.py ADDED
@@ -0,0 +1,10 @@
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: pts/mod/_cli/app.pct.py
2
+
3
+ __all__ = ["app", "app_state"]
4
+
5
+ # %% pts/mod/_cli/app.pct.py 3
6
+ import typer
7
+
8
+ # %% pts/mod/_cli/app.pct.py 4
9
+ app = typer.Typer(invoke_without_command=True)
10
+ app_state = {}