Source code for wirecurly.dialplan.applications

[docs]class ApplicationBase(object): """A base class for applications""" def __init__(self, app_name): super(ApplicationBase, self).__init__() self.app_name = app_name @property
[docs] def data(self): ''' Method that all must implement to provide data. ''' raise NotImplementedError
Read the Docs v: latest
Versions
latest
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.