ungana

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README

commit 1fbfc1095e9306c34bc40ed6bda331dc58739093
parent b9f347945212f6b371401ba46459b3a2565f8866
Author: Carlosokumu <carlosokumu254@gmail.com>
Date:   Wed, 13 Aug 2025 17:10:59 +0300

initialize arg parser

Diffstat:
Mcalendarapp/runnable/calendar_cli.py | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/calendarapp/runnable/calendar_cli.py b/calendarapp/runnable/calendar_cli.py @@ -1,5 +1,10 @@ +from calendarapp.cmd.args_parser import ArgsParser + def main(): - print("Hello from calendar app!") + args_handler = ArgsParser() + args = args_handler.parse_args() + print(args) + if __name__ == "__main__": main() \ No newline at end of file