mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-29 18:27:19 +02:00
10 lines
164 B
Python
10 lines
164 B
Python
"""
|
|
Map Machine entry point.
|
|
"""
|
|
from map_machine.main import main
|
|
|
|
__author__ = "Sergey Vartanov"
|
|
__email__ = "me@enzet.ru"
|
|
|
|
if __name__ == "__main__":
|
|
main()
|