Files
EdgeAPI/internal/db/models/api_node_model_ext.go
2020-09-13 20:37:28 +08:00

9 lines
141 B
Go

package models
import "strconv"
// 地址
func (this *APINode) Address() string {
return this.Host + ":" + strconv.Itoa(int(this.Port))
}