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 d3ff302d3e
Some checks failed
Build Docker Image / Build-Docker-Image (push) Failing after 2m8s
fix: more refactoring #181
2024-10-12 21:57:39 +02:00

10 lines
96 B
Go

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