summaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-09 21:13:35 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-09 21:13:35 +1000
commitb900c16c533969feb8c7cb86e0709f496237b577 (patch)
tree154810b49c56f72c069f216211fba60f3e942be0 /src/main.py
parentfeat: create parser (diff)
downloadcaelestia-cli-b900c16c533969feb8c7cb86e0709f496237b577.tar.gz
caelestia-cli-b900c16c533969feb8c7cb86e0709f496237b577.tar.bz2
caelestia-cli-b900c16c533969feb8c7cb86e0709f496237b577.zip
parser: add func to run with args
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.py b/src/main.py
index e206a79..a01222d 100644
--- a/src/main.py
+++ b/src/main.py
@@ -1,4 +1,5 @@
from parser import parse_args
if __name__ == "__main__":
- parse_args()
+ args = parse_args()
+ args.func(args)