11 lines
144 B
Go
11 lines
144 B
Go
package errs
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type HTTPErrWrapper struct {
|
|
HttpCode int
|
|
ErrorId uuid.UUID
|
|
Description string
|
|
Error error
|
|
}
|