keel/keeltest/service.go
2024-04-16 08:55:30 +02:00

14 lines
186 B
Go

package keeltest
import (
"context"
)
// Service interface
type Service interface {
URL() string
Name() string
Start(ctx context.Context) error
Close(ctx context.Context) error
}