()
| 1135 | } |
| 1136 | |
| 1137 | func (n *daemonNativeTools) automationManager() core.AutomationManager { |
| 1138 | if n == nil || n.deps == nil { |
| 1139 | return nil |
| 1140 | } |
| 1141 | if n.deps.Automation != nil { |
| 1142 | return n.deps.Automation |
| 1143 | } |
| 1144 | if n.deps.AutomationRuntime == nil { |
| 1145 | return nil |
| 1146 | } |
| 1147 | return n.deps.AutomationRuntime() |
| 1148 | } |
| 1149 | |
| 1150 | func (n *daemonNativeTools) toolList( |
| 1151 | ctx context.Context, |
no outgoing calls
no test coverage detected