Skip to content

Commit 81d7d46

Browse files
fix: make string utils avail externally (#335)
## Issue None ## Description Move string utils to the correct directory for access outside of package Signed-off-by: Artur Shad Nik <[email protected]> Co-authored-by: Tyler Gillson <[email protected]>
1 parent 5d4486c commit 81d7d46

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/utils/strings/strings.go renamed to pkg/util/strings.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Package strings contains utility functions for working with strings.
2-
package strings
1+
// Package util contains utility functions for working with strings.
2+
package util
33

44
import "strings"
55

internal/utils/strings/strings_test.go renamed to pkg/util/strings_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package strings
1+
package util
22

33
import (
44
"slices"

0 commit comments

Comments
 (0)