initial commit

This commit is contained in:
Gitea
2023-11-21 15:07:54 +03:00
commit 9bc56666a0
11 changed files with 349 additions and 0 deletions

11
internal/domain/error.go Normal file
View File

@ -0,0 +1,11 @@
package domain
const (
UnexpectedStatusError SimpleError = "unexpected status"
)
type SimpleError string
func (err SimpleError) Error() string {
return string(err)
}