Files
wehub-resource-sync 4e0f4422d0
build-docs / deploy (push) Has been cancelled
Check Markdown links / markdown-link-check (push) Has been cancelled
Pytest / test (3.11) (push) Has been cancelled
Pytest / test (3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:25:42 +08:00

11 lines
228 B
Python

#!/usr/bin/env python
import sys
from registry import registry # type: ignore
if __name__ == "__main__":
var_name = sys.argv[1]
var_value = sys.argv[2] if len(sys.argv) > 2 else ""
registry[var_name] = var_value