Update import path for BaseService in WalletService.ts

- Changed the import statement for BaseService from '@/core/services/BaseService' to '@/core/base/BaseService' to reflect the new directory structure.

This change ensures that the WalletService correctly references the BaseService, maintaining the integrity of the service layer.
This commit is contained in:
padreug 2025-09-14 23:09:31 +02:00
parent f51c03f838
commit f275d317ed

View file

@ -1,5 +1,5 @@
import { ref, computed } from 'vue' import { ref, computed } from 'vue'
import { BaseService } from '@/core/services/BaseService' import { BaseService } from '@/core/base/BaseService'
import { injectService, SERVICE_TOKENS } from '@/core/di-container' import { injectService, SERVICE_TOKENS } from '@/core/di-container'
export interface PayLink { export interface PayLink {