Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generic Multipart reader/writer implementaion #53

Merged
merged 19 commits into from
Mar 11, 2024
Prev Previous commit
Next Next commit
update deps
  • Loading branch information
sverdlov93 committed Mar 10, 2024
commit 7712d46cea63d8940fad9c274ea51417d957ae81
1 change: 1 addition & 0 deletions http/filestream/filestream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ func TestWriteFilesToStreamAndReadFilesFromStream(t *testing.T) {
}

func simpleFileHandler(fileName string) (fileWriter io.Writer, err error) {
// #nosec G302
return os.OpenFile(filepath.Join(targetDir, fileName), os.O_RDWR|os.O_CREATE, 0777)
}

Expand Down