12 lines
251 B
Python
12 lines
251 B
Python
#!/usr/bin/env python3
|
|
"""Entry point for ./start.sh — delegates to teampulse.cli."""
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent / "src"))
|
|
|
|
from teampulse.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|