Remove PuterDialog and ExportRegistrantService

This commit is contained in:
jelveh
2026-05-02 07:58:12 -07:00
parent ce69bc14a8
commit ffae2a1d0a
2 changed files with 0 additions and 112 deletions
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
}
}