13 lines
207 B
Python
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}")
|