2025-03-22 10:28:14 +01:00
|
|
|
#!/usr/bin/env python3
|
2026-07-14 11:27:49 +02:00
|
|
|
"""Entry point for the Linux Image Manager (lim)."""
|
2025-03-22 10:28:14 +01:00
|
|
|
|
2026-07-14 11:27:49 +02:00
|
|
|
import sys
|
|
|
|
|
from pathlib import Path
|
2025-03-22 10:28:14 +01:00
|
|
|
|
2026-07-14 11:27:49 +02:00
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent))
|
2025-03-22 10:28:14 +01:00
|
|
|
|
2026-07-14 11:27:49 +02:00
|
|
|
from lim.cli import main
|
2025-03-22 10:28:14 +01:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2026-07-14 11:27:49 +02:00
|
|
|
main()
|