fix imports

This commit is contained in:
maddalax 2024-10-11 10:28:34 -05:00
parent 8e4a63d224
commit 980afbc5ac
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
module html-to-htmgo
module github.com/maddalax/htmgo/tools/html-to-htmgo
go 1.23.0

View file

@ -1,8 +1,8 @@
package formatter
import (
"github.com/maddalax/htmgo/tools/html-to-htmgo/internal/domain"
"go/format"
"html-to-htmgo/internal/domain"
)
type Formatter struct {

View file

@ -4,8 +4,8 @@ import (
"bytes"
"errors"
"fmt"
"github.com/maddalax/htmgo/tools/html-to-htmgo/internal/domain"
"golang.org/x/net/html"
"html-to-htmgo/internal/domain"
"strings"
)

View file

@ -3,8 +3,8 @@
package main
import (
serviceformatter "html-to-htmgo/internal/adapters/services/formatter"
serviceparser "html-to-htmgo/internal/adapters/services/parser"
serviceformatter "github.com/maddalax/htmgo/tools/html-to-htmgo/internal/adapters/services/formatter"
serviceparser "github.com/maddalax/htmgo/tools/html-to-htmgo/internal/adapters/services/parser"
)
func Parse(input []byte) []byte {