mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-16 12:09:10 +01:00
6 lines
153 B
Python
6 lines
153 B
Python
|
from .DoorlockBackend import DoorlockBackend
|
||
|
|
||
|
class SimulationBackend(DoorlockBackend):
|
||
|
def __init__(self, handler):
|
||
|
super.__init__(handler)
|