authd/src/responses/errors.cr

8 lines
128 B
Crystal

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