From 9d4105ee59e76819b926707aaa1a77fd3d32e7c4 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Sat, 22 Apr 2023 08:06:08 +0000 Subject: [PATCH] chore(settings): remove unneeded pointers.go --- internal/configuration/settings/helpers/pointers.go | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 internal/configuration/settings/helpers/pointers.go diff --git a/internal/configuration/settings/helpers/pointers.go b/internal/configuration/settings/helpers/pointers.go deleted file mode 100644 index cfd17488..00000000 --- a/internal/configuration/settings/helpers/pointers.go +++ /dev/null @@ -1,11 +0,0 @@ -package helpers - -import "time" - -// StringPtr returns a pointer to the string value -// passed as argument. -func StringPtr(s string) *string { return &s } - -// DurationPtr returns a pointer to the duration value -// passed as argument. -func DurationPtr(d time.Duration) *time.Duration { return &d }