This repository has been archived on 2024-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
v6d1tokens/v6d1tokens/config.py
2023-10-02 16:59:39 +00:00

13 lines
207 B
Python

import os
from v6d0auth.config import port, root
__all__ = (
"myroot",
"taurl",
)
myroot = root / "v6d1tokens"
myroot.mkdir(exist_ok=True)
taurl = os.getenv("v6taurl", f"http://127.0.0.1:{port}")