vivaplusdl/util.go
Sebastiaan de Schaetzen ae765fdf64
Some checks failed
Build / build (push) Failing after 31s
Finish migration to mysqlite
2025-03-10 06:46:05 +01:00

8 lines
90 B
Go

package main
func forwardError(err error, to *error) {
if err != nil {
*to = err
}
}