Skip to content

Instantly share code, notes, and snippets.

@wangjohn
Created January 9, 2025 17:56
Show Gist options
  • Select an option

  • Save wangjohn/b692ccad121346e4bd4e6337160eb95b to your computer and use it in GitHub Desktop.

Select an option

Save wangjohn/b692ccad121346e4bd4e6337160eb95b to your computer and use it in GitHub Desktop.
type ResponseCleaner interface {
Clean(context.Context, string) (string, []ResponseDetails, error)
}
type ResponseDetails struct {
DetailType string `json:"detail_type"`
Content interface{} `json:"content"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment