1
0
Fork 0
mirror of synced 2024-06-27 18:50:47 +12:00
appwrite/public/scripts/services/console.js

17 lines
374 B
JavaScript
Raw Normal View History

2019-05-09 18:54:39 +12:00
(function (window) {
"use strict";
2019-05-09 20:01:51 +12:00
window.ls.container.set('console', function (window) {
2021-06-24 00:15:27 +12:00
var sdk = new window.Appwrite();
var endpoint = window.location.origin + '/v1';
2019-05-09 18:54:39 +12:00
2019-08-06 16:58:32 +12:00
sdk
.setEndpoint(endpoint)
2019-08-06 17:25:54 +12:00
.setProject('console')
2019-08-06 16:58:32 +12:00
.setLocale(APP_ENV.LOCALE)
2019-08-06 17:25:54 +12:00
;
2019-05-09 18:54:39 +12:00
return sdk;
}, true);
})(window);