Server.plugins

Gets the plugins actived on the server.

interface Server
shared nothrow @property @safe @nogc
const(Plugin)[]
plugins
()

Examples

log("There are ", server.plugins.filter!(a => a.author == "sel-plugins").length, " by sel-plugins");
log("There are ", server.plugins.filter!(a => a.api).length, " plugins with APIs");

Meta