Add license; change dirname

This commit is contained in:
Basti 2020-03-24 11:22:50 -05:00
parent 359b1e8f3d
commit 185ef5bfda
No known key found for this signature in database
GPG Key ID: BE4634D632D39B67
6 changed files with 8 additions and 5 deletions

View File

@ -1,8 +1,11 @@
import ApiKeys from './modules/rs-module-api-keys.mjs';
import Geocoder from './modules/geocode.mjs';
import initializeSettings from './modules/settings.mjs';
import initializeProfileUpdates from './modules/profile.mjs';
import { showElement, hideElement, renderImage } from './modules/dom-helpers.mjs';
//
// License: Do whatever you want with it. I'm not liable.
//
import ApiKeys from './lib/rs-module-api-keys.mjs';
import Geocoder from './lib/geocode.mjs';
import initializeSettings from './lib/settings.mjs';
import initializeProfileUpdates from './lib/profile.mjs';
import { showElement, hideElement, renderImage } from './lib/dom-helpers.mjs';
const remoteStorage = new RemoteStorage({ modules: [ApiKeys] });
remoteStorage.access.claim('profile', 'rw');