Files
nto-cli/utils/get_not_implemented_structs.go

12 lines
249 B
Go

package utils
func GetNotImplementedStructs(modelsFilePath string) []string {
var models []string
for _, model := range GetStructsList(modelsFilePath) {
if !IsEntityImplemented(model) {
models = append(models, model)
}
}
return models
}