From c1f9393dd16d96455f5c7440245088d3b419ed6b Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Tue, 16 Nov 2021 15:31:09 +0100 Subject: [PATCH] feat: add name --- service.go | 1 + 1 file changed, 1 insertion(+) 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 }