mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-05 04:05:06 -05:00
11 lines
147 B
R
11 lines
147 B
R
library(shiny)
|
|
|
|
badservercall <- function() {
|
|
stop("server boom")
|
|
}
|
|
|
|
function(input, output, session) {
|
|
on.exit(stopApp())
|
|
badservercall()
|
|
}
|