11 lines
291 B
Python
11 lines
291 B
Python
#!/usr/bin/env python3
|
|
"""Deprecated wrapper — use scripts/setup_secrets.py instead."""
|
|
from __future__ import annotations
|
|
|
|
import runpy
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
sys.argv[0] = "scripts/setup_secrets.py"
|
|
runpy.run_path("scripts/setup_secrets.py", run_name="__main__")
|