initial commit

This commit is contained in:
Mike Mason
2023-07-01 00:04:52 +00:00
commit 80fb879ef6
65 changed files with 3544 additions and 0 deletions

8
internal/metal/errors.go Normal file
View File

@@ -0,0 +1,8 @@
package metal
import "errors"
var (
// ErrUnauthorized is returned when the token provided did not validate to a user.
ErrUnauthorized = errors.New("unauthorized key")
)