vflow-cli 0.1.1__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.
vflow/__init__.py ADDED
@@ -0,0 +1 @@
1
+ # This file makes the 'vflow' directory a Python package.
vflow/actions.py ADDED
@@ -0,0 +1,39 @@
1
+ """
2
+ Thin façade that re-exports every public action from the service modules.
3
+
4
+ main.py and tests import ``actions.*``; the real implementations live in:
5
+
6
+ - ingest_service – ingest_shoot, ingest_report, prep_shoot, pull_shoot
7
+ - delivery_service – archive_file, create_select_file, copy_metadata_folder
8
+ - backup_service – consolidate_files, verify_backup, list_backups,
9
+ restore_folder, list_duplicates, remove_duplicates
10
+ """
11
+
12
+ from .ingest_service import ( # noqa: F401
13
+ ingest_report,
14
+ ingest_shoot,
15
+ prep_shoot,
16
+ pull_shoot,
17
+ )
18
+
19
+ from .delivery_service import ( # noqa: F401
20
+ archive_file,
21
+ create_select_file,
22
+ copy_metadata_folder,
23
+ )
24
+
25
+ from .backup_service import ( # noqa: F401
26
+ consolidate_files,
27
+ verify_backup,
28
+ list_backups,
29
+ restore_folder,
30
+ list_duplicates,
31
+ remove_duplicates,
32
+ )
33
+
34
+ # Re-export core helpers that tests import via actions.*
35
+ from .core.patterns import ( # noqa: F401
36
+ _extract_number_from_filename,
37
+ _parse_range_pattern,
38
+ _matches_pattern,
39
+ )