mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-03 16:10:31 +00:00
Remove PuterDialog and ExportRegistrantService
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -1,31 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2024-present Puter Technologies Inc.
|
||||
*
|
||||
* This file is part of Puter.
|
||||
*
|
||||
* Puter is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published
|
||||
* by the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import Spinner from '../UI/Components/Spinner';
|
||||
import { Service } from '../definitions';
|
||||
|
||||
/**
|
||||
* This class exists to keep exports to the service script API separate
|
||||
* from the service where exports are registered. This will make it easier
|
||||
* to change how it works in the future.
|
||||
*/
|
||||
export class ExportRegistrantService extends Service {
|
||||
_init () {
|
||||
console.log(Spinner); // import gets optimized out if we don't do this
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user