22 lines
396 B
Python
22 lines
396 B
Python
# Lewis Crawler
|
|
# 2021 - 2022
|
|
# Kitsune Scientific
|
|
|
|
import time
|
|
|
|
|
|
class Houston:
|
|
def __init__(self, logger):
|
|
self.log = logger
|
|
|
|
def run(self):
|
|
self.log.success('Ready to robot!')
|
|
|
|
# Junk~
|
|
while True:
|
|
try:
|
|
self.log.debug('Nothing to do.')
|
|
time.sleep(1)
|
|
except KeyboardInterrupt:
|
|
break
|