fix: circular imports

This commit is contained in:
KernelDeimos 2025-01-09 19:07:19 -05:00
parent eac2ddf8da
commit 8fabf014a9
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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");