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 go 1.23.0

View file

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

View file

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

View file

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