Move file_upload to namespace
This commit is contained in:
parent
e4e71541e7
commit
c6ff2c5d2e
1 changed files with 11 additions and 9 deletions
|
@ -1,12 +1,14 @@
|
|||
# :nodoc:
|
||||
struct FileUpload
|
||||
getter tmpfile : Tempfile
|
||||
getter tmpfile_path : String
|
||||
getter filename : String
|
||||
getter meta : HTTP::FormData::FileMetadata
|
||||
getter headers : HTTP::Headers
|
||||
module Kemal
|
||||
struct FileUpload
|
||||
getter tmpfile : Tempfile
|
||||
getter tmpfile_path : String
|
||||
getter filename : String
|
||||
getter meta : HTTP::FormData::FileMetadata
|
||||
getter headers : HTTP::Headers
|
||||
|
||||
def initialize(@tmpfile, @tmpfile_path, @meta, @headers)
|
||||
@filename = @meta.filename.not_nil!
|
||||
def initialize(@tmpfile, @tmpfile_path, @meta, @headers)
|
||||
@filename = @meta.filename.not_nil!
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue