Initial commit: add all skills
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
16
mengya-mail-skill/scripts/mengya-mail-api.py
Normal file
16
mengya-mail-skill/scripts/mengya-mail-api.py
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/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())
|
||||
Reference in New Issue
Block a user