From 51e67ef0b3f78a8cb0dd0943e8ef0b35f5d60362 Mon Sep 17 00:00:00 2001 From: arisnguyenit97 Date: Sun, 15 Dec 2024 22:56:58 +0700 Subject: [PATCH] :recycle: refactor: refactor codebase #2 --- init.go | 1 + 1 file changed, 1 insertion(+) diff --git a/init.go b/init.go index 11562ed..23d9a33 100644 --- a/init.go +++ b/init.go @@ -558,6 +558,7 @@ func (w *wrapper) WithPathf(v string, args ...interface{}) *wrapper { // - A pointer to the modified `wrapper` instance (enabling method chaining). func (w *wrapper) WithHeader(v *header) *wrapper { w.header = v + w.WithStatusCode(w.Header().Code()) return w }