fmt

Gerasimos (Makis) Maropoulos 2019-07-20 18:26:33 +03:00
parent f09b6f63dd
commit 833845c99a
No known key found for this signature in database
GPG Key ID: F169457BBDA4ACF4

@ -75,7 +75,8 @@ PostValues(name string) []string
// FormFile returns the first uploaded file that received from the client. // FormFile returns the first uploaded file that received from the client.
// //
// The default form's memory maximum size is 32MB, it can be changed by the // The default form's memory maximum size is 32MB, it can be changed by the
// `iris.WithPostMaxMemory` configurator at main configuration passed on `app.Run`'s second argument. // `iris.WithPostMaxMemory` configurator at
// main configuration passed on `app.Run`'s second argument.
FormFile(key string) (multipart.File, *multipart.FileHeader, error) FormFile(key string) (multipart.File, *multipart.FileHeader, error)
``` ```