feat: Replace mongo package with monc & mon (#2002)

* Replace mongo package with monc & mon

* Add terminal whitespace

* format code
This commit is contained in:
anqiansong
2022-06-12 23:02:34 +08:00
committed by GitHub
parent ed1c937998
commit c27e00b45c
16 changed files with 544 additions and 255 deletions

View File

@@ -0,0 +1,25 @@
#!/bin/bash
function console_red() {
echo -e "\033[31m "$*" \033[0m"
}
function console_green() {
echo -e "\033[32m "$*" \033[0m"
}
function console_yellow() {
echo -e "\033[33m "$*" \033[0m"
}
function console_blue() {
echo -e "\033[34m "$*" \033[0m"
}
function console_tip() {
console_blue "========================== $* =============================="
}
function console_step() {
console_blue "<<<<<<<<<<<<<<<< $* >>>>>>>>>>>>>>>>"
}