fix imports
This commit is contained in:
parent
8e4a63d224
commit
980afbc5ac
4 changed files with 5 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
module html-to-htmgo
|
||||
module github.com/maddalax/htmgo/tools/html-to-htmgo
|
||||
|
||||
go 1.23.0
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue