Warning

This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for tool_shed.webapp.api

from galaxy.webapps.base.controller import BaseAPIController
from tool_shed.structured_app import ToolShedApp


[docs]class BaseShedAPIController(BaseAPIController): app: ToolShedApp
[docs] def __init__(self, app: ToolShedApp): super().__init__(app)