12 lines
228 B
Python
12 lines
228 B
Python
__author__ = 'asc'
|
|
|
|
class System_Debug():
|
|
|
|
def __init__(self):
|
|
#TODO add system initialization
|
|
pass
|
|
|
|
@property
|
|
def status (self):
|
|
#TODO status check
|
|
return (0, "System functioning properly") |