Move file_upload to namespace

This commit is contained in:
Sdogruyol 2017-02-13 22:57:58 +03:00
parent e4e71541e7
commit c6ff2c5d2e

View file

@ -1,12 +1,14 @@
# :nodoc: # :nodoc:
struct FileUpload module Kemal
getter tmpfile : Tempfile struct FileUpload
getter tmpfile_path : String getter tmpfile : Tempfile
getter filename : String getter tmpfile_path : String
getter meta : HTTP::FormData::FileMetadata getter filename : String
getter headers : HTTP::Headers getter meta : HTTP::FormData::FileMetadata
getter headers : HTTP::Headers
def initialize(@tmpfile, @tmpfile_path, @meta, @headers) def initialize(@tmpfile, @tmpfile_path, @meta, @headers)
@filename = @meta.filename.not_nil! @filename = @meta.filename.not_nil!
end
end end
end end