From 0698d682e4e071023caf29ac9ce78600a5eef772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=93=E3=81=AE=E4=B8=AD=E4=BA=8C=E7=97=85=E3=81=AB?= =?UTF-8?q?=E7=88=86=E7=84=94=E3=82=92=EF=BC=81?= Date: Fri, 24 May 2024 13:36:07 +0800 Subject: [PATCH] add dev notes --- R/application/check_dependency/dependency_graph.R | 5 +++++ R/application/hook.R | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 R/application/check_dependency/dependency_graph.R diff --git a/R/application/check_dependency/dependency_graph.R b/R/application/check_dependency/dependency_graph.R new file mode 100644 index 0000000..de239ae --- /dev/null +++ b/R/application/check_dependency/dependency_graph.R @@ -0,0 +1,5 @@ +#' try to extract the dependency graph from the application modules +#' +const dependency_graph = function() { + +} \ No newline at end of file diff --git a/R/application/hook.R b/R/application/hook.R index e057fe7..08ccb27 100644 --- a/R/application/hook.R +++ b/R/application/hook.R @@ -2,6 +2,8 @@ #' #' @param app the app object which is generated via the ``app`` function #' +#' @details the application module will be add to the ``context$workflow`` tuple list. +#' const hook = function(app) { const context = .get_context(); const pool = context$workflow;