mirror of
https://github.com/bingohuang/docker-labs.git
synced 2025-07-14 10:17:26 +08:00
13 lines
242 B
Go
13 lines
242 B
Go
package types
|
|
|
|
type Session struct {
|
|
Id string `json:"id"`
|
|
Instances map[string]*Instance `json:"instances"`
|
|
}
|
|
|
|
type Instance struct {
|
|
Name string `json:"name"`
|
|
IP string `json:"ip"`
|
|
ExecId string `json:"-"`
|
|
}
|