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) -}