17 lines
344 B
Python
17 lines
344 B
Python
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
MAIL_SRC = Path("/shumengya/project/python/mengya-mail-api/src")
|
|
|
|
if str(MAIL_SRC) not in sys.path:
|
|
sys.path.insert(0, str(MAIL_SRC))
|
|
|
|
from mengya_mail_api.cli import main # noqa: E402
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|