13 lines
263 B
Go
13 lines
263 B
Go
package worker
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"gitlab.michelsen.id/phillmichelsen/tessera/services/data_service/internal/manager"
|
|
)
|
|
|
|
type Worker interface {
|
|
ID() uuid.UUID
|
|
Start(cfg map[string]string, controller manager.SessionController) error
|
|
Stop()
|
|
}
|