8 lines
178 B
Go
8 lines
178 B
Go
// 服务器工具函数。
|
|
package main
|
|
|
|
import "strconv"
|
|
|
|
// fmtSprint 整数转字符串(构建监听地址用)。
|
|
func fmtSprint(v int) string { return strconv.Itoa(v) }
|