22 lines
353 B
Python
22 lines
353 B
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Service startup script.
|
|
"""
|
|
from backive.core.events import EventInterface
|
|
from backive.config.config import Config
|
|
|
|
|
|
class Backive:
|
|
def __init__(self):
|
|
self._config = Config()
|
|
self._events = None
|
|
|
|
def serve(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
backive = Backive()
|
|
backive.serve()
|