Diff of /slideflow/plugin.py [000000] .. [78ef36]

Switch to unified view

a b/slideflow/plugin.py
1
"""
2
This module is responsible for loading all the plugins that are installed in the system.
3
"""
4
5
import pkg_resources
6
7
def load_plugins():
8
    for entry_point in pkg_resources.iter_entry_points('slideflow.plugins'):
9
        register = entry_point.load()
10
        register()
11
12
load_plugins()