#! /usr/bin/env python

"""Command-line entry point for use during development.
"""

from eddietool.commands import agent

## Start...
if __name__ == "__main__":
    agent()

