WithAutomation injects the daemon-owned automation manager.
(manager core.AutomationManager)
| 207 | |
| 208 | // WithAutomation injects the daemon-owned automation manager. |
| 209 | func WithAutomation(manager core.AutomationManager) Option { |
| 210 | return func(server *Server) { |
| 211 | server.automation = manager |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | // WithBridgeService injects the daemon-owned bridge runtime. |
| 216 | func WithBridgeService(bridges core.BridgeService) Option { |
no outgoing calls