diff options
author | Grail Finder <wohilas@gmail.com> | 2025-05-19 10:45:26 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2025-05-19 10:45:26 +0300 |
commit | 8b9a33d3302ac7e094029556dcc718345afccc4c (patch) | |
tree | 4dec3637fc8999b5905ae62083b2ce77d284cd30 /extra/audio.go | |
parent | 94df5b830c84d1fb570c85ec072d917ea4497d8c (diff) |
Chore: nolint comment for nonvalid issues
Diffstat (limited to 'extra/audio.go')
-rw-r--r-- | extra/audio.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/audio.go b/extra/audio.go index fc5e2ba..73d75ed 100644 --- a/extra/audio.go +++ b/extra/audio.go @@ -144,7 +144,7 @@ func (o *KokoroOrator) requestSound(text string) (io.ReadCloser, error) { if err != nil { return nil, fmt.Errorf("failed to marshal payload: %w", err) } - req, err := http.NewRequest("POST", o.URL, bytes.NewBuffer(payloadBytes)) + req, err := http.NewRequest("POST", o.URL, bytes.NewBuffer(payloadBytes)) //nolint:noctx if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } |