binary + installer

This commit is contained in:
Zacharias-Brohn
2026-02-18 18:53:11 +01:00
parent 01e94a10ab
commit 457007f74d
21 changed files with 270 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
from __future__ import annotations
import typer
from zshell.subcommands import shell, scheme, screenshot, wallpaper
app = typer.Typer()
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")
def main() -> None:
app()