Init project structure
parent
7222806e00
commit
e5e256039c
@ -0,0 +1 @@
|
||||
__pycache__
|
@ -0,0 +1 @@
|
||||
#!/usr/bin/env python3
|
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import mitel_ommclient2
|
||||
import time
|
||||
|
||||
def run():
|
||||
while True:
|
||||
print("meow")
|
||||
time.sleep(2)
|
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import threading
|
||||
|
||||
from . import dect
|
||||
|
||||
def run():
|
||||
threading.Thread(target=dect.run).start()
|
||||
|
||||
if __name__ == "__main__":
|
||||
run()
|
Loading…
Reference in New Issue