mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-04-18 21:18:33 -04:00
- Added `identity_resolution.py` for resolving Wizarr users and identities. - Created `ingestion.py` to handle recording and updating activity events. - Introduced `maintenance.py` for cleanup and session management tasks. - Developed `queries.py` for read-oriented operations on activity sessions. - Implemented background tasks in `activity.py` for scheduled maintenance. - Added tests for activity services and blueprint to ensure functionality.
16 lines
327 B
Python
Executable File
16 lines
327 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
The actual implementation is in the plus submodule.
|
|
"""
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
# Call the actual setup script in plus submodule
|
|
sys.exit(
|
|
subprocess.call(
|
|
[sys.executable, "plus/build_tools/setup_plus.py"] + sys.argv[1:]
|
|
)
|
|
)
|