Files

7 lines
129 B
Python
Raw Permalink Normal View History

2025-11-18 03:36:49 +08:00
"""Entry point for cli, enables execution with `python -m dotenv`"""
from .cli import cli
if __name__ == "__main__":
cli()