Added API route for returning API schemas

This commit is contained in:
Joel Collins 2019-06-14 17:18:13 +01:00
parent 7cb992adc4
commit e55c097a32
3 changed files with 51 additions and 7 deletions

View file

@ -126,7 +126,8 @@ class PluginMount(object):
"""
def __init__(self, parent):
self.parent = parent
self.plugins = []
self.plugins = [] # List of plugin objects
self.schemas = [] # List of plugin schemas
logging.info("Creating plugin mount")
@property