| 1 | package main |
| 2 | |
| 3 | type GenRequest struct { |
| 4 | UserPrompt string `json:"user_prompt"` // option |
| 5 | AspectRatio string `json:"aspect_ratio,omitempty"` // option |
| 6 | ExpandPrompt bool `json:"expand_prompt,omitempty"` // option |
| 7 | ImageUrl string `json:"image_url,omitempty"` //option, uploaded refer image url |
| 8 | ImageEndUrl string `json:"image_end_url,omitempty"` //option, uploaded refer image url |
| 9 | } |
| 10 | |
| 11 | type VideoTask struct { |
| 12 | ID string `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected