Implement initial entry editing support (no notes editing or gen update)

This commit is contained in:
2024-03-07 18:34:12 -05:00
parent 9f1955eb82
commit 300516c3cd
5 changed files with 60 additions and 22 deletions
+9
View File
@@ -115,3 +115,12 @@ func StringGen(length int, complex bool, complexity float64) string {
actualSpecialChars = 0
}
}
func EntryIsNotEmpty(entryData []string) bool {
for _, line := range entryData {
if line != "" {
return true
}
}
return false
}