Add Workflow Executor Example (#892)
Signed-off-by: JoshuaL3000 <joshua.jian.ern.liew@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
10
WorkflowExecAgent/tools/components/component.py
Normal file
10
WorkflowExecAgent/tools/components/component.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# Copyright (C) 2024 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
||||
class Component:
|
||||
def __init__(self, request_handler):
|
||||
self.request_handler = request_handler
|
||||
|
||||
def _make_request(self, *args, **kwargs):
|
||||
return self.request_handler._make_request(*args, **kwargs)
|
||||
Reference in New Issue
Block a user