prosody/core/features.lua
Matthew Wild fdfaff07e0 core.features: New module to track and expose the features supported by Prosody
A "feature" is a simple string, and it's expected that we will add to (and
maybe remove from) this list over the course of time.
2022-02-04 14:10:34 +00:00

8 lines
117 B
Lua

local set = require "util.set";
return {
available = set.new{
-- mod_bookmarks bundled
"mod_bookmarks";
};
};