diff --git a/__init__.py b/__init__.py index 82b5aa8..273ad34 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1 @@ -from .xl import * \ No newline at end of file +from .test import * \ No newline at end of file diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..57bff95 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1 @@ +from .main import test \ No newline at end of file diff --git a/test/main.py b/test/main.py new file mode 100644 index 0000000..90ce4c4 --- /dev/null +++ b/test/main.py @@ -0,0 +1,2 @@ +def test(): + print("hello world") \ No newline at end of file