Invoke a Shiny module
Note: As of Shiny 1.5.0, we recommend using moduleServer() instead of callModule(), because the syntax is a little easier to understand, and modules created with moduleServer can be tested with testServer().
moduleServer()
callModule()
moduleServer
testServer()
callModule(module, id, ..., session = getDefaultReactiveDomain())
module
id
...
session
The return value, if any, from executing the module server function
Useful links