mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-16 21:24:19 +00:00
1.1 KiB
1.1 KiB
Connector Proxy
A connector-proxy is an application that is generally deployed alongside frontend and backend. Please see Connector Proxy in 5 mins.
graph TD
subgraph ConnectorProxy[Connector Proxy Application]
direction TB
ConnectorA
ConnectorB
end
subgraph ConnectorA[Connector A]
direction TB
CommandA1[Command C]
CommandA2[Command D]
end
subgraph ConnectorB[Connector B]
direction TB
CommandB1[Command E]
CommandB2[Command F]
end
Connector Proxies are containers for connectors. Connectors are usually python libraries that are included in connector proxy codebases, but they can also be embedded directly inside of connector proxies. Our connector-proxy-demo includes a few connectors, including connector-aws and connector-http. Connector http can be used for many API interactions, but you can also write your own connectors.