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
|
go 1.23.0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue