No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prompt.go 328B

1234567891011
  1. package domain
  2. type Prompt struct {
  3. ID string `json:"id"`
  4. SessionID string `json:"sessionID,omitempty"`
  5. ProjectID string `json:"projectID,omitempty"`
  6. ModulePath string `json:"modulePath"`
  7. PromptText string `json:"promptText"`
  8. ResultText string `json:"resultText,omitempty"`
  9. Status string `json:"status"`
  10. }