mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-23 06:00:21 +08:00
fix: circular imports
This commit is contained in:
parent
eac2ddf8da
commit
8fabf014a9
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user