Created
January 9, 2025 17:56
-
-
Save wangjohn/b692ccad121346e4bd4e6337160eb95b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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