mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 05:07:55 +08:00
* Add server plugin system Plugins are optional modules loaded at runtime. Specification: * Plugins are loaded from the server.plugins module (directory server/plugins) * The import_plugins method is run as part of the initialization of the server module in __init__.py * Add plugins to the EB build process * Remove bit of dead code * Respond to feedback from @bmccandless
7 lines
106 B
Python
7 lines
106 B
Python
from server.common.utils import import_plugins
|
|
|
|
__version__ = "0.15.0"
|
|
|
|
|
|
import_plugins("server.plugins")
|