authd/src/responses/keepalive.cr

8 lines
123 B
Crystal
Raw Normal View History

2024-02-20 17:14:37 +01:00
class AuthD::Response
IPC::JSON.message KeepAlive, 250 do
def initialize()
end
end
AuthD.responses << KeepAlive
end