Closed sczyh30 closed 2 years ago
Add component abstraction as the abstraction of a control plane component:
type OpenSergoControlPlaneComponent interface { // ComponentName returns the name of the component. ComponentName() string // Run starts the component. Run() error }
Add component abstraction as the abstraction of a control plane component: