Skip to content

Commit

Permalink
add logs back to cli (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
josibake authored Sep 9, 2024
1 parent af58611 commit 0427a2f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/warnet/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .admin import admin
from .bitcoin import bitcoin
from .control import down, run, stop
from .control import down, logs, run, stop
from .deploy import deploy
from .graph import graph
from .image import image
Expand All @@ -19,12 +19,13 @@ def cli():
cli.add_command(admin)
cli.add_command(auth)
cli.add_command(bitcoin)
cli.add_command(new)
cli.add_command(deploy)
cli.add_command(down)
cli.add_command(graph)
cli.add_command(image)
cli.add_command(init)
cli.add_command(logs)
cli.add_command(new)
cli.add_command(run)
cli.add_command(setup)
cli.add_command(status)
Expand Down

0 comments on commit 0427a2f

Please sign in to comment.