""" .. module: lemur.bases.export :platform: Unix :copyright: (c) 2015 by Netflix Inc., see AUTHORS for more :license: Apache, see LICENSE for more details. .. moduleauthor:: Kevin Glisson """ from lemur.plugins.base import Plugin class ExportPlugin(Plugin): """ This is the base class from which all supported exporters will inherit from. """ type = 'export' def export(self): raise NotImplemented