Software /
code /
verse
File
server.lua @ 493:08e5c8637fea
squishy: Normalise Lua syntax
lua-format applied
Makes semi-automated merging with e.g. rockspec files easier.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 21 Jun 2023 15:22:17 +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;