wip: refactor controller

This commit is contained in:
Ilia Denisov
2026-01-14 22:17:24 +02:00
parent 1bfc9242af
commit fe8a8d4150
43 changed files with 4710 additions and 2188 deletions
+7
View File
@@ -11,3 +11,10 @@ func validateTypeName(v string) (string, bool) {
// TODO: special symbols AND include error check in all user-input test
return s, false
}
func maxUint(a, b uint) uint {
if b > a {
return b
}
return a
}