This commit is contained in:
2026-04-26 22:32:57 +02:00
parent 7a2786af66
commit 2eb0529e98
6 changed files with 619 additions and 2 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
from __future__ import annotations
import typer
from zshell.subcommands import shell, scheme, screenshot, wallpaper
from zshell.subcommands import shell, scheme, screenshot, wallpaper, preset
app = typer.Typer()
@@ -8,6 +8,7 @@ app.add_typer(shell.app, name="shell")
app.add_typer(scheme.app, name="scheme")
app.add_typer(screenshot.app, name="screenshot")
app.add_typer(wallpaper.app, name="wallpaper")
app.add_typer(preset.app, name="preset")
def main() -> None: