mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
26 lines
422 B
JavaScript
26 lines
422 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/multiwikiserver/server-extension.js
|
||
|
type: application/javascript
|
||
|
module-type: server-extension
|
||
|
|
||
|
Multi wiki server extension for the core server object
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
function Extension(server) {
|
||
|
this.server = server;
|
||
|
}
|
||
|
|
||
|
Extension.prototype.hook = function(name) {
|
||
|
|
||
|
};
|
||
|
|
||
|
exports.Extension = Extension;
|
||
|
|
||
|
})();
|