comparison libervia/backend/core/sat_main.py @ 4072:040095a5dc7f

refactoring: rename `SAT` class to `LiberviaBackend`
author Goffi <goffi@goffi.org>
date Fri, 02 Jun 2023 11:55:48 +0200
parents 4b842c1fb686
children
comparison
equal deleted inserted replaced
4071:4b842c1fb686 4072:040095a5dc7f
53 import libervia.backend.plugins 53 import libervia.backend.plugins
54 54
55 55
56 log = getLogger(__name__) 56 log = getLogger(__name__)
57 57
58 class SAT(service.Service): 58 class LiberviaBackend(service.Service):
59 59
60 def _init(self): 60 def _init(self):
61 # we don't use __init__ to avoid doule initialisation with twistd 61 # we don't use __init__ to avoid doule initialisation with twistd
62 # this _init is called in startService 62 # this _init is called in startService
63 log.info(f"{C.APP_NAME} {self.full_version}") 63 log.info(f"{C.APP_NAME} {self.full_version}")