After the week I've had, I deserve to make a commit like this lmao

This commit is contained in:
2025-01-19 13:09:37 -05:00
parent 6f55ee1b45
commit 68961f8ad8
11 changed files with 440 additions and 64 deletions

View File

@@ -6,6 +6,8 @@ type Error string; const (
ErrUnknownMethod Error = "unknown method"
ErrPayloadTooLarge Error = "payload too large"
ErrUnknownNetwork Error = "unknown network"
ErrIntegerOverflow Error = "integer overflow"
ErrMessageMalformed Error = "message is malformed"
)
// Error implements the error interface.