From 21e9d8b4aa0a6a75ec91994c7503cb19639ba6df Mon Sep 17 00:00:00 2001 From: crusader Date: Mon, 26 Mar 2018 12:41:23 +0900 Subject: [PATCH] ing --- modules/commons/interfaces/{Stoper.go => Stopper.go} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename modules/commons/interfaces/{Stoper.go => Stopper.go} (74%) 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 }