adding security fixes

This commit is contained in:
afeiszli
2022-08-31 11:38:29 -04:00
parent e49dcc0796
commit 8fc9dac969
5 changed files with 69 additions and 61 deletions

5
models/error.go Normal file
View File

@@ -0,0 +1,5 @@
package models
type Error string
func (e Error) Error() string { return string(e) }