forked from andrewshi98/Steam-Helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.R
35 lines (29 loc) · 796 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
32
33
34
35
# Source your files in this section
##Andrew
source("scripts/main_page_server.R")
source("scripts/online_plot_server.R")
source("scripts/detail_page_server.R")
source("scripts/custom_graph_server.R")
##
##Ryan
source("scripts/random_game_server.R")
##
##Sailesh
source("scripts/charts_server.R")
source("scripts/project_description_server.R")
#
##Martin
source("scripts/Searching_Function_server.R")
#
#Server Structure
shinyServer(function(input, output){
MainPage_Server(input, output)
RandomGamePage_Server(input, output)
CustomGraph_Server(input, output)
OnlinePlot_Server(input, output)
DetailPageServer(input, output)
RandomGamePage_Server(input, output)
Charts_Server(input,output)
Searching_Function_Server(input,output)
project_description_server(input,output)
})