bridgeStrategy creates users via Coder and routes requests through AI Bridge.
| 20 | |
| 21 | // bridgeStrategy creates users via Coder and routes requests through AI Bridge. |
| 22 | type bridgeStrategy struct { |
| 23 | client *codersdk.Client |
| 24 | provider string |
| 25 | metrics *Metrics |
| 26 | |
| 27 | userConfig createusers.Config |
| 28 | createUserRunner *createusers.Runner |
| 29 | } |
| 30 | |
| 31 | type bridgeStrategyConfig struct { |
| 32 | Client *codersdk.Client |
nothing calls this directly
no outgoing calls
no test coverage detected