From 1aba45ae76b909291874a5e78f1de6a64d4ebc55 Mon Sep 17 00:00:00 2001 From: KDwevedi Date: Wed, 20 Sep 2023 16:37:20 +0530 Subject: [PATCH] api module --- api/__init__.py | 0 api/github.py | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 api/__init__.py create mode 100644 api/github.py diff --git a/api/__init__.py b/api/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/api/github.py b/api/github.py new file mode 100644 index 0000000..2adb7de --- /dev/null +++ b/api/github.py @@ -0,0 +1,3 @@ +class Issue: + def __init__(self, url) -> None: + self.url = url \ No newline at end of file