Skip to content

Commit 99b9423

Browse files
committed
feat: add __init__ file
1 parent 6ba20f5 commit 99b9423

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

src/openai_api_polling/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from importlib.metadata import version
2+
3+
4+
__version__ = version("openai-api-polling")
5+
__author__ = ["Song Tan <sepinetam@gmail.com>"]
6+
7+
8+
def main() -> None:
9+
print("Hello from openai-api-polling!")
10+
11+
12+
if __name__ == "__main__":
13+
main()

0 commit comments

Comments
 (0)