mirror of
https://github.com/opbnq-q/nto-cli.git
synced 2025-12-06 21:30:34 +07:00
12 lines
249 B
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
|
|
}
|