From b900c16c533969feb8c7cb86e0709f496237b577 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 9 Jun 2025 21:13:35 +1000 Subject: parser: add func to run with args --- src/subcommands/clipboard.py | 5 +++++ src/subcommands/emoji.py | 5 +++++ src/subcommands/pip.py | 5 +++++ src/subcommands/record.py | 5 +++++ src/subcommands/scheme.py | 5 +++++ src/subcommands/screenshot.py | 5 +++++ src/subcommands/shell.py | 5 +++++ src/subcommands/toggle.py | 5 +++++ src/subcommands/variant.py | 5 +++++ src/subcommands/wallpaper.py | 5 +++++ src/subcommands/wsaction.py | 5 +++++ 11 files changed, 55 insertions(+) create mode 100644 src/subcommands/clipboard.py create mode 100644 src/subcommands/emoji.py create mode 100644 src/subcommands/pip.py create mode 100644 src/subcommands/record.py create mode 100644 src/subcommands/scheme.py create mode 100644 src/subcommands/screenshot.py create mode 100644 src/subcommands/shell.py create mode 100644 src/subcommands/toggle.py create mode 100644 src/subcommands/variant.py create mode 100644 src/subcommands/wallpaper.py create mode 100644 src/subcommands/wsaction.py (limited to 'src/subcommands') diff --git a/src/subcommands/clipboard.py b/src/subcommands/clipboard.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/clipboard.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/emoji.py b/src/subcommands/emoji.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/emoji.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/pip.py b/src/subcommands/pip.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/pip.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/record.py b/src/subcommands/record.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/record.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/scheme.py b/src/subcommands/scheme.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/scheme.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/screenshot.py b/src/subcommands/screenshot.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/screenshot.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/shell.py b/src/subcommands/shell.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/shell.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/toggle.py b/src/subcommands/toggle.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/toggle.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/variant.py b/src/subcommands/variant.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/variant.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/wallpaper.py b/src/subcommands/wallpaper.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/wallpaper.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass diff --git a/src/subcommands/wsaction.py b/src/subcommands/wsaction.py new file mode 100644 index 0000000..a94f3d0 --- /dev/null +++ b/src/subcommands/wsaction.py @@ -0,0 +1,5 @@ +from argparse import Namespace + + +def run(args: Namespace) -> None: + pass -- cgit v1.2.3-freya