mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
9 lines
141 B
Go
9 lines
141 B
Go
package models
|
|
|
|
import "strconv"
|
|
|
|
// 地址
|
|
func (this *APINode) Address() string {
|
|
return this.Host + ":" + strconv.Itoa(int(this.Port))
|
|
}
|