add missing model

This commit is contained in:
Adrian Zürcher
2026-01-06 10:15:08 +01:00
parent d80764b943
commit 1822fc3628

9
models/html.go Normal file
View File

@@ -0,0 +1,9 @@
package models
type Htmls []Html
// input model for converter
type Html struct {
Html []byte
Output string
}