Add: test module for python
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
class TestModule:
|
||||||
|
def print(self):
|
||||||
|
print('test module')
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
from lib.test_module import TestModule
|
||||||
|
|
||||||
|
tm = TestModule()
|
||||||
|
tm.print()
|
||||||
Reference in New Issue
Block a user