convert snake_case to camelCase
This commit is contained in:
parent
0535cb98aa
commit
681e57ce95
2 changed files with 18 additions and 18 deletions
|
|
@ -6,15 +6,15 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
color_blue = "[#3e5db9]"
|
||||
color_red = "[#d54646]"
|
||||
banner = "\r\n[::b]" +
|
||||
color_blue + "██████╗ ██╗ ██████╗ ██████╗ " + color_red + " ██████╗██╗ █████╗ ██╗ ██╗\n" +
|
||||
color_blue + "██╔══██╗██║██╔════╝██╔═══██╗" + color_red + "██╔════╝██║ ██╔══██╗██║ ██║\n" +
|
||||
color_blue + "██████╔╝██║██║ ██║ ██║" + color_red + "██║ ██║ ███████║██║ █╗ ██║\n" +
|
||||
color_blue + "██╔═══╝ ██║██║ ██║ ██║" + color_red + "██║ ██║ ██╔══██║██║███╗██║\n" +
|
||||
color_blue + "██║ ██║╚██████╗╚██████╔╝" + color_red + "╚██████╗███████╗██║ ██║╚███╔███╔╝\n" +
|
||||
color_blue + "╚═╝ ╚═╝ ╚═════╝ ╚═════╝ " + color_red + " ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝\n " +
|
||||
colorBlue = "[#3e5db9]"
|
||||
colorRed = "[#d54646]"
|
||||
banner = "\r\n[::b]" +
|
||||
colorBlue + "██████╗ ██╗ ██████╗ ██████╗ " + colorRed + " ██████╗██╗ █████╗ ██╗ ██╗\n" +
|
||||
colorBlue + "██╔══██╗██║██╔════╝██╔═══██╗" + colorRed + "██╔════╝██║ ██╔══██╗██║ ██║\n" +
|
||||
colorBlue + "██████╔╝██║██║ ██║ ██║" + colorRed + "██║ ██║ ███████║██║ █╗ ██║\n" +
|
||||
colorBlue + "██╔═══╝ ██║██║ ██║ ██║" + colorRed + "██║ ██║ ██╔══██║██║███╗██║\n" +
|
||||
colorBlue + "██║ ██║╚██████╗╚██████╔╝" + colorRed + "╚██████╗███████╗██║ ██║╚███╔███╔╝\n" +
|
||||
colorBlue + "╚═╝ ╚═╝ ╚═════╝ ╚═════╝ " + colorRed + " ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝\n " +
|
||||
"[:]"
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -49,15 +49,15 @@ func NewPicoclawCommand() *cobra.Command {
|
|||
}
|
||||
|
||||
const (
|
||||
color_blue = "\033[1;38;2;62;93;185m"
|
||||
color_red = "\033[1;38;2;213;70;70m"
|
||||
banner = "\r\n" +
|
||||
color_blue + "██████╗ ██╗ ██████╗ ██████╗ " + color_red + " ██████╗██╗ █████╗ ██╗ ██╗\n" +
|
||||
color_blue + "██╔══██╗██║██╔════╝██╔═══██╗" + color_red + "██╔════╝██║ ██╔══██╗██║ ██║\n" +
|
||||
color_blue + "██████╔╝██║██║ ██║ ██║" + color_red + "██║ ██║ ███████║██║ █╗ ██║\n" +
|
||||
color_blue + "██╔═══╝ ██║██║ ██║ ██║" + color_red + "██║ ██║ ██╔══██║██║███╗██║\n" +
|
||||
color_blue + "██║ ██║╚██████╗╚██████╔╝" + color_red + "╚██████╗███████╗██║ ██║╚███╔███╔╝\n" +
|
||||
color_blue + "╚═╝ ╚═╝ ╚═════╝ ╚═════╝ " + color_red + " ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝\n " +
|
||||
colorBlue = "\033[1;38;2;62;93;185m"
|
||||
colorRed = "\033[1;38;2;213;70;70m"
|
||||
banner = "\r\n" +
|
||||
colorBlue + "██████╗ ██╗ ██████╗ ██████╗ " + colorRed + " ██████╗██╗ █████╗ ██╗ ██╗\n" +
|
||||
colorBlue + "██╔══██╗██║██╔════╝██╔═══██╗" + colorRed + "██╔════╝██║ ██╔══██╗██║ ██║\n" +
|
||||
colorBlue + "██████╔╝██║██║ ██║ ██║" + colorRed + "██║ ██║ ███████║██║ █╗ ██║\n" +
|
||||
colorBlue + "██╔═══╝ ██║██║ ██║ ██║" + colorRed + "██║ ██║ ██╔══██║██║███╗██║\n" +
|
||||
colorBlue + "██║ ██║╚██████╗╚██████╔╝" + colorRed + "╚██████╗███████╗██║ ██║╚███╔███╔╝\n" +
|
||||
colorBlue + "╚═╝ ╚═╝ ╚═════╝ ╚═════╝ " + colorRed + " ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝\n " +
|
||||
"\033[0m\r\n"
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue