rexyai / RestRserve

R web API framework for building high-performance microservices and app backends
https://restrserve.org
276 stars 32 forks source link

Add multipart example #136

Closed artemklevtsov closed 4 years ago

codecov[bot] commented 4 years ago

Codecov Report

:exclamation: No coverage uploaded for pull request base (dev@f0aff07). Click here to learn what that means. The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff           @@
##             dev     #136   +/-   ##
======================================
  Coverage       ?   92.54%           
======================================
  Files          ?       27           
  Lines          ?     1315           
  Branches       ?        0           
======================================
  Hits           ?     1217           
  Misses         ?       98           
  Partials       ?        0
Impacted Files Coverage Δ
R/BackendRserve.R 71.31% <ø> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update f0aff07...3730a9e. Read the comment docs.

lintr-bot commented 4 years ago

inst/examples/multi-part/app.R:11:14: style: Use =, not <-, for assignment.

​echo_handler <- function(request, response) {
             ^

inst/examples/multi-part/app.R:20:7: style: Use =, not <-, for assignment.

​  cnt <- request$get_file("csv") # 'csv' from the upload form field
      ^

inst/examples/multi-part/app.R:22:6: style: Use =, not <-, for assignment.

​  dt <- read_csv(cnt)
     ^

inst/examples/multi-part/app.R:28:7: style: Use =, not <-, for assignment.

​  tmp <- tempfile()
      ^