PrintAdvertisement 打印广告信息
()
| 132 | |
| 133 | // PrintAdvertisement 打印广告信息 |
| 134 | func PrintAdvertisement() { |
| 135 | // 使用颜色代码 |
| 136 | blue := "\033[36m" // 青色 |
| 137 | yellow := "\033[33m" // 黄色 |
| 138 | white := "\033[37m" // 白色 |
| 139 | reset := "\033[0m" // 重置颜色 |
| 140 | |
| 141 | fmt.Println() |
| 142 | fmt.Printf("%s-----------------------------------------------------%s\n", white, reset) |
| 143 | fmt.Println() |
| 144 | fmt.Printf("%s %s五年老机场%s %s%shttps://goii.cc/mn%s %s(牧牛云)%s\n", |
| 145 | white, |
| 146 | yellow, reset, |
| 147 | blue, white, reset, |
| 148 | yellow, reset) |
| 149 | fmt.Println() |
| 150 | } |
no outgoing calls
no test coverage detected