feat: add name

This commit is contained in:
Kevin Franklin Kim 2021-11-16 15:31:09 +01:00
parent b8955ef4f5
commit c1f9393dd1

View File

@ -6,6 +6,7 @@ import (
// Service interface
type Service interface {
Name() string
Start(ctx context.Context) error
Close(ctx context.Context) error
}