Initial commit.

This commit is contained in:
郑佩茹
2022-03-07 16:17:21 -07:00
commit 82284d6d6a
14 changed files with 474 additions and 0 deletions

10
include.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
## GETS THE CURRENT MODULE ROOT DIRECTORY
MOD_SKELETON_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/" && pwd )"
source $MOD_SKELETON_ROOT"/conf/conf.sh.dist"
if [ -f $MOD_SKELETON_ROOT"/conf/conf.sh" ]; then
source $MOD_SKELETON_ROOT"/conf/conf.sh"
fi