diff --git a/service.go b/service.go index 5cd5d00..adb74e7 100644 --- a/service.go +++ b/service.go @@ -6,6 +6,7 @@ import ( // Service interface type Service interface { + Name() string Start(ctx context.Context) error Close(ctx context.Context) error }