linspector-old/lib/frontends/frontend.py

11 lines
305 B
Python
Raw Normal View History

2013-08-14 20:36:35 +02:00
"""
Frontends are GUI interfaces to Linspector. This could be a shell or other terminal based GUI.
2013-08-13 23:10:06 +02:00
Frontends are absolutely no requirement for running Linspector. If no frontend is selected Linspector will just log
stuff to stdout.
2013-08-14 20:36:35 +02:00
"""
2013-08-13 23:10:06 +02:00
2013-08-14 20:36:35 +02:00
class Frontend():
2013-08-13 23:10:06 +02:00
def __init__(self, **kwargs):
return