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 e201ac7b2c
All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 46s
Build Docker Image / Build-Docker-Image (push) Successful in 41s
feat: run staticcheck during build and fix errors
2024-11-29 21:24:51 +01:00

10 lines
96 B
Go

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