control: Move serves into a separate components
This commit is contained in:
parent
6f409be8b2
commit
845e927117
12 changed files with 210 additions and 127 deletions
|
|
@ -5,7 +5,6 @@ import (
|
|||
"path/filepath"
|
||||
|
||||
"github.com/FAU-CDI/wisski-distillery/internal/component"
|
||||
"github.com/FAU-CDI/wisski-distillery/internal/component/instances"
|
||||
"github.com/FAU-CDI/wisski-distillery/internal/core"
|
||||
"github.com/FAU-CDI/wisski-distillery/pkg/environment"
|
||||
)
|
||||
|
|
@ -14,9 +13,9 @@ import (
|
|||
type Control struct {
|
||||
component.ComponentBase
|
||||
|
||||
Instances *instances.Instances
|
||||
Servables []component.Servable
|
||||
|
||||
ResolverFile string
|
||||
ResolverFile string // TODO: this shouldn't be needed!
|
||||
}
|
||||
|
||||
func (control Control) Name() string {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue