This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/db/models/api_node_model_ext.go
T
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))
}