Initial commit.

This commit is contained in:
郑佩茹
2022-03-11 14:36:23 -07:00
commit 13cb5945f0
16 changed files with 615 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