local app = create_app() app:post("/", function(req,res) if req.parts.myfile == nil then res.status = 400 res.body = "Missing myfile field" return res end fs:write("yololo.txt", req.parts.myfile.content) return res end) app:run(3000)