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

10 lines
96 B
Go

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