mirror of
https://github.com/markqvist/Sideband.git
synced 2024-10-01 03:15:37 -04: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()
|