Skip to content

Commit 49fbaab

Browse files
committed
Draft: flet debug CLI command
1 parent 77a1958 commit 49fbaab

File tree

6 files changed

+2389
-2194
lines changed

6 files changed

+2389
-2194
lines changed

sdk/python/packages/flet-cli/src/flet_cli/cli.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import flet.version
55
import flet_cli.commands.build
66
import flet_cli.commands.create
7+
import flet_cli.commands.debug
78
import flet_cli.commands.doctor # Adding the doctor command
89
import flet_cli.commands.pack
910
import flet_cli.commands.publish
@@ -78,6 +79,7 @@ def get_parser() -> argparse.ArgumentParser:
7879
flet_cli.commands.create.Command.register_to(sp, "create")
7980
flet_cli.commands.run.Command.register_to(sp, "run")
8081
flet_cli.commands.build.Command.register_to(sp, "build")
82+
flet_cli.commands.debug.Command.register_to(sp, "debug")
8183
flet_cli.commands.pack.Command.register_to(sp, "pack")
8284
flet_cli.commands.publish.Command.register_to(sp, "publish")
8385
flet_cli.commands.serve.Command.register_to(sp, "serve")

0 commit comments

Comments
 (0)