12 lines
		
	
	
		
			243 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			243 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package v1
 | 
						|
 | 
						|
type State struct {
 | 
						|
	Containers []Container `json:"containers"`
 | 
						|
}
 | 
						|
 | 
						|
type Container struct {
 | 
						|
	ID         string `json:"id,omitempty"`
 | 
						|
	BundlePath string `json:"bundlePath,omitempty"`
 | 
						|
	Processes  []int  `json:"processes,omitempty"`
 | 
						|
}
 |