diff options
Diffstat (limited to 'contrib/libpodpy/system.py')
-rw-r--r-- | contrib/libpodpy/system.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/libpodpy/system.py b/contrib/libpodpy/system.py new file mode 100644 index 000000000..563cc6566 --- /dev/null +++ b/contrib/libpodpy/system.py @@ -0,0 +1,10 @@ + +class System(object): + def __init__(self, client): + self.client = client + + def Ping(self): + return self.client.Ping() + + def Version(self): + return self.client.GetVersion() |