mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02: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()
|