(other SubAgent)
| 40 | } |
| 41 | |
| 42 | func (s SubAgent) EqualConfig(other SubAgent) bool { |
| 43 | return s.Name == other.Name && |
| 44 | s.Directory == other.Directory && |
| 45 | s.Architecture == other.Architecture && |
| 46 | s.OperatingSystem == other.OperatingSystem && |
| 47 | slices.Equal(s.DisplayApps, other.DisplayApps) && |
| 48 | slices.Equal(s.Apps, other.Apps) |
| 49 | } |
| 50 | |
| 51 | type SubAgentApp struct { |
| 52 | Slug string `json:"slug"` |