#!/usr/bin/python3

"""
map is a script that simply starts the map process
by invoking map() on a MapStarter object.

Usage information is shown by running: ./map --help

More information is available at https://github.com/THLO/map.
"""

from map.mapper import MapStarter

mapp_starter = MapStarter()
mapp_starter.map()
