mirror of
https://github.com/simonw/dclient.git
synced 2026-07-25 18:34:32 +02:00
8 lines
160 B
Python
8 lines
160 B
Python
from datasette import hookimpl
|
|
|
|
|
|
@hookimpl
|
|
def register_commands(cli):
|
|
from .cli import cli as dclient_cli
|
|
|
|
cli.add_command(dclient_cli, name="client")
|