Skip to content

Commit

Permalink
fix: circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Jan 10, 2025
1 parent eac2ddf commit 8fabf01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/backend/src/services/HostDiskUsageService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit 8fabf01

Please sign in to comment.