mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-26 17:08:21 +00:00
16 lines
287 B
JavaScript
16 lines
287 B
JavaScript
// A thing that holds your Matrix Client
|
|
var Matrix = require("matrix-js-sdk");
|
|
|
|
var matrixClient = null;
|
|
|
|
module.exports = {
|
|
get: function() {
|
|
return matrixClient;
|
|
},
|
|
|
|
replaceUsingUrl: function(hs_url) {
|
|
matrixClient = Matrix.createClient(hs_url);
|
|
}
|
|
};
|
|
|