mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 21:40:36 +01:00
14 lines
248 B
Python
14 lines
248 B
Python
|
import time
|
||
|
|
||
|
class sidebandservice():
|
||
|
|
||
|
def __init__(self):
|
||
|
print("Sideband Service created")
|
||
|
self.run()
|
||
|
|
||
|
def run(self):
|
||
|
while True:
|
||
|
print("Service ping")
|
||
|
time.sleep(3)
|
||
|
|
||
|
sbs = sidebandservice()
|