mirror of
https://github.com/HackingLZ/maps_scanner
synced 2026-06-06 15:44:30 +00:00
12 lines
292 B
Python
Executable File
12 lines
292 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Wrapper to run maps_scanner as a CLI tool."""
|
|
import sys
|
|
import os
|
|
|
|
# Ensure the parent directory is on the path so relative imports work
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from maps_scanner.__main__ import main
|
|
|
|
main()
|