removed logging + improved dynamic result fetching

This commit is contained in:
partisan 2024-06-15 23:53:03 +02:00
parent 21c8f549f0
commit a138928d63
6 changed files with 28 additions and 29 deletions

View file

@ -6,7 +6,7 @@ import (
var (
debugMode bool = true
funcs = template.FuncMap{
funcs = template.FuncMap{
"sub": func(a, b int) int {
return a - b
},
@ -15,10 +15,3 @@ var (
},
}
)
func max(a, b int) int {
if a > b {
return a
}
return b
}