9 lines
124 B
Go
9 lines
124 B
Go
package main
|
|
|
|
import "log"
|
|
|
|
// main 命令行工具入口函数
|
|
func main() {
|
|
log.Println("广告服务命令行工具")
|
|
}
|