File

server.lua @ 495:1ca531495c3d

squishy: Move some compat layers into verse namespace This way, if the prosody libraries are available, they could be used from the verse compat layres
author Kim Alvefur <zash@zash.se>
date Wed, 21 Jun 2023 21:03:05 +0200
parent 492:22844ac3be4e
line wrap: on
line source

local have_epoll, server_epoll = pcall(require, "prosody.net.server_epoll");
if have_epoll then return server_epoll; end

local server_select = require "prosody.net.server_select";
return server_select;