diff --git a/cmd/templ/generatecmd/proxy/proxy.go b/cmd/templ/generatecmd/proxy/proxy.go index f2d3efb8..1dfd1ffc 100644 --- a/cmd/templ/generatecmd/proxy/proxy.go +++ b/cmd/templ/generatecmd/proxy/proxy.go @@ -17,7 +17,7 @@ import ( "time" "github.com/a-h/templ/cmd/templ/generatecmd/sse" - "github.com/a-h/templ/htmlfind" + "github.com/a-h/templ/internal/htmlfind" "github.com/andybalholm/brotli" "golang.org/x/net/html" diff --git a/cmd/templ/generatecmd/testwatch/generate_test.go b/cmd/templ/generatecmd/testwatch/generate_test.go index 0eadd222..eaa46c4a 100644 --- a/cmd/templ/generatecmd/testwatch/generate_test.go +++ b/cmd/templ/generatecmd/testwatch/generate_test.go @@ -20,7 +20,7 @@ import ( "github.com/a-h/templ/cmd/templ/generatecmd" "github.com/a-h/templ/cmd/templ/generatecmd/modcheck" - "github.com/a-h/templ/htmlfind" + "github.com/a-h/templ/internal/htmlfind" "golang.org/x/net/html" ) diff --git a/htmlfind/htmlfind.go b/internal/htmlfind/htmlfind.go similarity index 100% rename from htmlfind/htmlfind.go rename to internal/htmlfind/htmlfind.go diff --git a/htmlfind/htmlfind_test.go b/internal/htmlfind/htmlfind_test.go similarity index 98% rename from htmlfind/htmlfind_test.go rename to internal/htmlfind/htmlfind_test.go index dc47b26b..12c40f19 100644 --- a/htmlfind/htmlfind_test.go +++ b/internal/htmlfind/htmlfind_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/a-h/templ/htmlfind" + "github.com/a-h/templ/internal/htmlfind" "golang.org/x/net/html" ) diff --git a/turbo/stream_test.go b/turbo/stream_test.go index 66f058a8..97ee6b88 100644 --- a/turbo/stream_test.go +++ b/turbo/stream_test.go @@ -9,7 +9,7 @@ import ( "testing" "github.com/a-h/templ" - "github.com/a-h/templ/htmlfind" + "github.com/a-h/templ/internal/htmlfind" "golang.org/x/net/html" )