mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
14 lines
128 B
Python
Executable File
14 lines
128 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import Test
|
|
|
|
def main():
|
|
test = Test.Test()
|
|
|
|
test.testit()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|