10 lines
124 B
Go
10 lines
124 B
Go
package models
|
|
|
|
type Files []File
|
|
|
|
// input model for converter
|
|
type File struct {
|
|
Input string
|
|
Output string
|
|
}
|