diff --git a/modules/commons/interfaces/Stoper.go b/modules/commons/interfaces/Stopper.go similarity index 74% rename from modules/commons/interfaces/Stoper.go rename to modules/commons/interfaces/Stopper.go index 15293cc..d4f0dd1 100644 --- a/modules/commons/interfaces/Stoper.go +++ b/modules/commons/interfaces/Stopper.go @@ -2,6 +2,6 @@ package interfaces import "context" -type Stoper interface { +type Stopper interface { Stop(ctx context.Context) error }