From e196991c54d4207ab9c30507171748331d96c622 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Tue, 15 Nov 2022 11:01:11 -0600 Subject: [PATCH] plugin handling ... --- data/maker/__init__.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/data/maker/__init__.py b/data/maker/__init__.py index fdf2305..7b3a347 100644 --- a/data/maker/__init__.py +++ b/data/maker/__init__.py @@ -589,4 +589,14 @@ class factory : pthread= Trainer(**_args) if 'start' in _args and _args['start'] == True : pthread.start() - return pthread \ No newline at end of file + return pthread + +class plugins: + @staticmethod + def load(_config): + """ + This function attempts to load the plugins to insure they are valid + _config configuration for plugin specifications {pre:{pipeline,path},post:{pipeline,path}} + """ + +