Files
tessera/services/data_service/internal/worker/worker.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()
}