authd/src/requests/keepalive.cr

12 lines
204 B
Crystal
Raw Normal View History

2024-02-20 17:14:37 +01:00
class AuthD::Request
IPC::JSON.message KeepAlive, 250 do
def initialize()
end
def handle(authd : AuthD::Service, fd : Int32)
Response::KeepAlive.new
end
end
AuthD.requests << KeepAlive
end