mirror of
https://github.com/HeyPuter/puter.git
synced 2026-08-24 23:17:23 +00:00
fix: circular imports
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
* 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/>.
|
||||
*/
|
||||
const { BaseService } = require("../../../exports");
|
||||
const BaseService = require('../../services/BaseService');
|
||||
const { surrounding_box } = require("../../fun/dev-console-ui-utils");
|
||||
|
||||
class ComplainAboutVersionsService extends BaseService {
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
* 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/>.
|
||||
*/
|
||||
const { BaseService } = require("../../exports");
|
||||
const BaseService = require('./BaseService');
|
||||
const { execSync } = require('child_process');
|
||||
const config = require("../config");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user