import { Schema } from 'effect'
export const FailureSchema = Schema.Struct({
failure: Schema.Struct({
message: Schema.optional(Schema.String),
source: Schema.optional(Schema.String),
error: Schema.optional(Schema.Any),
_tag: Schema.optional(Schema.String),
}),
})
import { Schema } from 'effect'
export const FailureSchema = Schema.Struct({
failure: Schema.Struct({
message: Schema.optional(Schema.String),
source: Schema.optional(Schema.String),
error: Schema.optional(Schema.Any),
_tag: Schema.optional(Schema.String),
}),
})