15 lines
424 B
Go
15 lines
424 B
Go
package response_struct
|
|
|
|
type ScenarioResponse struct {
|
|
Scenarios []Scenario `json:"scenarios"`
|
|
}
|
|
|
|
type Scenario struct {
|
|
Name string `json:"name"`
|
|
Background string `json:"background"`
|
|
Solution string `json:"solution"`
|
|
CodeExample string `json:"code_example"`
|
|
CoreProblemSolved string `json:"core_problem_solved"`
|
|
KeyConsiderations []string `json:"key_considerations"`
|
|
}
|