mirror of
https://github.com/singchia/frontier.git
synced 2025-09-27 04:36:18 +08:00
10 lines
221 B
Go
10 lines
221 B
Go
package repo
|
|
|
|
// key: serviceID; value: Service
|
|
type Service struct {
|
|
Service string `json:"service"`
|
|
FrontierID string `json:"frontier_id"`
|
|
Addr string `json:"addr"`
|
|
UpdateTime int64 `json:"update_time"`
|
|
}
|