Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Add registration for more subsystems via plugins Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Move content service to separate package Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			373 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			373 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package shim
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"github.com/crosbymichael/console"
 | 
						|
)
 | 
						|
 | 
						|
type process interface {
 | 
						|
	// Pid returns the pid for the process
 | 
						|
	Pid() int
 | 
						|
	// Resize resizes the process console
 | 
						|
	Resize(ws console.WinSize) error
 | 
						|
	// Exited sets the exit status for the process
 | 
						|
	Exited(status int)
 | 
						|
	// Status returns the exit status
 | 
						|
	Status() int
 | 
						|
	Delete(context.Context) error
 | 
						|
}
 |