mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-30 18:57:49 +02:00
11 lines
162 B
Python
11 lines
162 B
Python
"""
|
|
Röntgen entry point.
|
|
|
|
Author: Sergey Vartanov (me@enzet.ru).
|
|
"""
|
|
import sys
|
|
|
|
from roentgen.mapper import main
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv)
|