10 lines
124 B
Go
10 lines
124 B
Go
package models
|
|
|
|
type Htmls []Html
|
|
|
|
// input model for converter
|
|
type Html struct {
|
|
Html []byte
|
|
Output string
|
|
}
|