-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.R
More file actions
30 lines (23 loc) · 779 Bytes
/
global.R
File metadata and controls
30 lines (23 loc) · 779 Bytes
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
library(R6)
library(httr)
library(magrittr)
library(digest)
library(data.table)
library(tidyr)
library(OpenDataEnterprises)
library(shiny)
library(shinybusy)
library(DT)
library(dplyr)
library(stringr)
APP_VERSION <- "0.1.0"
source(file = "./helpers/vectorize_input_text.R")
source(file = "./modules/mod_filter_dataframe_tabpanel.R")
source(file = "./modules/mod_data_source_tabpanel.R")
source(file = "./modules/mod_admin_files_read_log.R")
source(file = "./modules/mod_admin_files_update.R")
source(file = "./modules/mod_about_versioning.R")
source(file = "./modules/mod_about_project.R")
source(file = "./modules/mod_process_data_logs_tabpanel.R")
source(file = "./r6_classes/AppVersionsList.R", encoding = "UTF-8")
source(file = "./r6_classes/AppVersionsDataFrame.R")