blob: 92c63ac3dca54228461e7a1d1525e404159976b9 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview Entry file for extension
*/
import {Background} from './background';
import {DeskApiImpl} from './desk_api_impl';
import {NotificationApiImpl} from './notification_api_impl';
function main() {
return new Background(chrome, new DeskApiImpl(), new NotificationApiImpl());
}
main();