add new model

This commit is contained in:
Adrian Zürcher
2025-12-24 12:08:43 +01:00
parent 5985854092
commit 48793c65bc

9
models/file.go Normal file
View File

@@ -0,0 +1,9 @@
package models
type Files []File
// input model for converter
type File struct {
Input string
Output string
}