diff --git a/src/web/python/chocomae/lib/test_module.py b/src/web/python/chocomae/lib/test_module.py new file mode 100644 index 0000000..abb85b9 --- /dev/null +++ b/src/web/python/chocomae/lib/test_module.py @@ -0,0 +1,3 @@ +class TestModule: + def print(self): + print('test module') \ No newline at end of file diff --git a/src/web/python/chocomae/test.py b/src/web/python/chocomae/test.py new file mode 100644 index 0000000..4f8ea6b --- /dev/null +++ b/src/web/python/chocomae/test.py @@ -0,0 +1,4 @@ +from lib.test_module import TestModule + +tm = TestModule() +tm.print() \ No newline at end of file