Source code for simpleml.cli.main

"""
Main entrypoint for the `simpleml` command line
"""

[docs]__author__ = "Elisha Yadgaran"
import click from . import database @click.group()
[docs]def cli():
""" Entrypoint for the `simpleml` command line call """ cli.add_command(database.db)