diff options
Diffstat (limited to 'ext/js/background/background-main.js')
-rw-r--r-- | ext/js/background/background-main.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/js/background/background-main.js b/ext/js/background/background-main.js index f5871a14..b63b4396 100644 --- a/ext/js/background/background-main.js +++ b/ext/js/background/background-main.js @@ -16,14 +16,15 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {yomitan} from '../yomitan.js'; +import {Application} from '../application.js'; import {Backend} from './backend.js'; /** Entry point. */ async function main() { - yomitan.prepare(true); + const application = new Application(); + application.prepare(true); - const backend = new Backend(yomitan.webExtension); + const backend = new Backend(application.webExtension); await backend.prepare(); } |