From cccced993e7179f6ab1d0a71b6f839b264b78799 Mon Sep 17 00:00:00 2001 From: David Nguyen Date: Tue, 4 Feb 2025 15:10:09 +1100 Subject: [PATCH] fix: remove registration hook --- internal/hooks/registration.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 internal/hooks/registration.go diff --git a/internal/hooks/registration.go b/internal/hooks/registration.go deleted file mode 100644 index fa131be..0000000 --- a/internal/hooks/registration.go +++ /dev/null @@ -1,18 +0,0 @@ -package hooks - -/* - * This file is only ever generated once on the first generation and then is free to be modified. - * Any hooks you wish to add should be registered in the initHooks function. Feel free to define - * your hooks in this file or in separate files in the hooks package. - * - * Hooks are registered per SDK instance, and are valid for the lifetime of the SDK instance. - */ - -func initHooks(h *Hooks) { - // exampleHook := &ExampleHook{} - - // h.registerSDKInitHook(exampleHook) - // h.registerBeforeRequestHook(exampleHook) - // h.registerAfterErrorHook(exampleHook) - // h.registerAfterSuccessHook(exampleHook) -}