feat: add transformer for model

This commit is contained in:
rogeecn
2025-03-22 18:23:26 +08:00
parent e1eeb6bc0d
commit 501af58e66
6 changed files with 49 additions and 27 deletions

View File

@@ -0,0 +1,9 @@
package model
type Transformer struct {
Ignores struct {
Jet []string `mapstructure:"jet"`
Model []string `mapstructure:"model"`
} `mapstructure:"ignores"`
Types map[string]map[string]string `mapstructure:"types"`
}