mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { AppService, BaseService } from 'core/services';
|
|
|
|
class TransactionsService extends BaseService {
|
|
constructor(appService: AppService) {
|
|
super('/transaction', appService);
|
|
}
|
|
}
|
|
|
|
export default TransactionsService;
|