8 lines
170 B
Python
8 lines
170 B
Python
"""
|
|
The interface class should contain all stuff for frontend/backend communication to the Linspector core.
|
|
"""
|
|
|
|
|
|
class Interface():
|
|
def __init__(self):
|
|
pass
|