File size: 144 Bytes
287a0bc
 
 
 
 
 
 
1
2
3
4
5
6
7
8
package common

// Compoent is the base class for difference components of the system
type Component interface {
	Start() error
	Stop() error
}