NomadNet/nomadnet/ui/NoneUI.py

19 lines
536 B
Python
Raw Normal View History

2022-05-17 07:11:04 -04:00
import RNS
import nomadnet
import time
from nomadnet import NomadNetworkApp
class NoneUI:
def __init__(self):
self.app = NomadNetworkApp.get_shared_instance()
self.app.ui = self
if not self.app.force_console_log:
RNS.log("Nomad Network started in daemon mode, all further messages are logged to "+str(self.app.logfilepath), RNS.LOG_INFO, _override_destination=True)
else:
RNS.log("Nomad Network daemon started", RNS.LOG_INFO)
2022-05-17 07:11:04 -04:00
while True:
time.sleep(1)