mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
c27e00b45c
* Replace mongo package with monc & mon * Add terminal whitespace * format code
26 lines
453 B
Bash
26 lines
453 B
Bash
#!/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 "<<<<<<<<<<<<<<<< $* >>>>>>>>>>>>>>>>"
|
|
}
|