16 lines
312 B
Python
16 lines
312 B
Python
#!/usr/bin/env python3
|
|
"""Executable entry point for the GovOPlaN Kubernetes VM lab."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent))
|
|
|
|
from govoplan_lab.cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|