This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/types/types.go
Tim Wundenberg a2ca51afbf
Some checks failed
Build Docker Image / Build-Docker-Image (push) Failing after 37s
fix: fix static code analysis
2024-11-29 20:29:10 +01:00

10 lines
96 B
Go

package types
import (
"errors"
)
var (
ErrInternal = errors.New("internal server error")
)