authd/src/responses/errors.cr

9 lines
154 B
Crystal

class AuthD::Response
IPC::CBOR.message Error, 0 do
property reason : String? = nil
def initialize(@reason)
end
end
AuthD.responses << Error
end