9 lines
188 B
R
9 lines
188 B
R
library(httpuv)
|
|
|
|
runServer("0.0.0.0", 5000,
|
|
list(
|
|
call = function(req) {
|
|
list(status = 200L, headers = list('Content-Type' = 'text/html'), body = "Goodbye, world!")
|
|
}
|
|
)
|
|
)
|