-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.R
31 lines (27 loc) · 810 Bytes
/
server.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
############################################################################
############################################################################
##
## NO NEED TO ALTER THIS PAGE
##
## Document: server.R
##
## Description: Assemble all server functions from the "includes" folder
##
## R version 4.4.1 (2024-06-14 ucrt)
##
#############################################################################
#############################################################################
server <- function(input, output, session) {
# include all required server files for head, body and footer
for (server_each in c(
"includes/header",
"includes/body",
"includes/footer"
)) {
source.part(
path = server_each,
which = "server",
input, output, session
)
}
}