From f3f1a1f1887ffe890de5e82f7bfc6d026d194557 Mon Sep 17 00:00:00 2001 From: jelveh Date: Sun, 5 Jan 2025 22:39:20 -0800 Subject: [PATCH] Copyright notice fix --- .../src/services/auth/VirtualGroupService.js | 19 +++++++++++++++++++ .../drivers/DriverUsagePolicyService.js | 1 - .../information/InformationService.js | 18 ------------------ 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/backend/src/services/auth/VirtualGroupService.js b/src/backend/src/services/auth/VirtualGroupService.js index 607144f6..9ee37a23 100644 --- a/src/backend/src/services/auth/VirtualGroupService.js +++ b/src/backend/src/services/auth/VirtualGroupService.js @@ -1,4 +1,23 @@ // METADATA // {"ai-commented":{"service":"openai-completion","model":"gpt-4o"}} +/* + * Copyright (C) 2024 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 . + */ + const BaseService = require("../BaseService"); diff --git a/src/backend/src/services/drivers/DriverUsagePolicyService.js b/src/backend/src/services/drivers/DriverUsagePolicyService.js index ba5e4337..1e2765de 100644 --- a/src/backend/src/services/drivers/DriverUsagePolicyService.js +++ b/src/backend/src/services/drivers/DriverUsagePolicyService.js @@ -1,5 +1,4 @@ // METADATA // {"ai-commented":{"service":"openai-completion","model":"gpt-4o"}} -const APIError = require("../../api/APIError"); const { PermissionUtil } = require("../auth/PermissionService"); const BaseService = require("../BaseService"); diff --git a/src/backend/src/services/information/InformationService.js b/src/backend/src/services/information/InformationService.js index 22760e7f..71c66a5d 100644 --- a/src/backend/src/services/information/InformationService.js +++ b/src/backend/src/services/information/InformationService.js @@ -20,24 +20,6 @@ const BaseService = require("../BaseService"); -/* - * Copyright (C) 2024 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 . - */ /** * @class InformationProvider * @classdesc The InformationProvider class facilitates the registration of strategies for providing information based on given inputs. It allows services to register methods for obtaining information and optimizes the process by determining the most efficient methods for retrieving the required information.