mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
13 lines
168 B
Go
13 lines
168 B
Go
package keel
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Service interface
|
|
type Service interface {
|
|
Name() string
|
|
Start(ctx context.Context) error
|
|
Close(ctx context.Context) error
|
|
}
|