diff options
Diffstat (limited to 'services/auth/interface.go')
-rw-r--r-- | services/auth/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/auth/interface.go b/services/auth/interface.go index a05ece2078..ecc9ad2ca6 100644 --- a/services/auth/interface.go +++ b/services/auth/interface.go @@ -34,7 +34,7 @@ type Method interface { type Initializable interface { // Init should be called exactly once before using any of the other methods, // in order to allow the plugin to allocate necessary resources - Init() error + Init(ctx context.Context) error } // Named represents a named thing |