18 lines
217 B
Python
18 lines
217 B
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Service startup script.
|
|
"""
|
|
|
|
class Backive:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def serve(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
backive = Backive()
|
|
backive.serve()
|