chore(gonf): update dependencies

This commit is contained in:
Julien Dessaux 2025-05-07 22:58:22 +02:00
parent d51bc9a963
commit f9ea84f0b9
Signed by: adyxax
GPG key ID: F92E51B86E07177E
4 changed files with 11 additions and 9 deletions

View file

@ -23,6 +23,7 @@ type FileType int
const (
FILE = iota
DIRECTORY
// TODO symlink
)
type FilePromise struct {

View file

@ -10,7 +10,8 @@ import (
var builtinTemplateFunctions = map[string]any{
//"encodeURIQueryParameter": url.QueryEscape,
"var": getVariable,
"fact": isFact,
"var": getVariable,
}
func FilterSlice[T any](slice *[]T, predicate func(T) bool) {