htmgo/tools/html-to-htmgo/internal/domain/parser.go

6 lines
92 B
Go
Raw Permalink Normal View History

2024-10-11 15:25:41 +00:00
package domain
type HTMLParser interface {
FromBytes(bytes []byte) (*CustomNode, error)
}