1 Commits

Author SHA1 Message Date
Adrian Zürcher
1822fc3628 add missing model 2026-01-06 10:15:08 +01:00

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
}