""" Collection of pathfinding examples """ from . import astar from . import dijkstra __all__ = [ 'astar', 'dijkstra' ]