mirror of
https://github.com/valitydev/holmes.git
synced 2024-11-06 09:55:19 +00:00
5d9418c702
* Add script for batch refund processing
22 lines
281 B
Plaintext
22 lines
281 B
Plaintext
BW="\x1b[1;37m"
|
|
BR="\x1b[1;31m"
|
|
BY="\x1b[1;33m"
|
|
RS="\x1b[0m"
|
|
|
|
function err {
|
|
echo -e "${BR}[ERROR]${RS}" "${*}"
|
|
exit 127
|
|
}
|
|
|
|
function warn {
|
|
echo -e "${BY}[WARNING]${RS}" "${*}"
|
|
}
|
|
|
|
function info {
|
|
echo -e "${BW}[INFO]${RS}" "${*}"
|
|
}
|
|
|
|
function em {
|
|
echo "${BW}${*}${RS}"
|
|
}
|