1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-07-14 10:17:26 +08:00
docker-labs/types/session.go
Jonathan Leibiusky (@xetorthio) 02d50073c5 Attach to the same terminal
2016-10-08 13:35:02 +02:00

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:"-"`
}