| 1 | import type { SupportedActiveResponse } from "@/types/activeResponse.d" |
| 2 | |
| 3 | export const supported_active_response: SupportedActiveResponse[] = [ |
| 4 | { |
| 5 | name: "Response1", |
| 6 | description: "This is the first supported active response." |
| 7 | }, |
| 8 | { |
| 9 | name: "Response2", |
| 10 | description: "This is the second supported active response, used for monitoring." |
| 11 | }, |
| 12 | { |
| 13 | name: "Response3", |
| 14 | description: "This active response is for error handling and notifications." |
| 15 | } |
| 16 | ] |