Skip to content

Commit

Permalink
refactor(resources/bank): move bank stuff to controller
Browse files Browse the repository at this point in the history
someone else can refactor this shit
  • Loading branch information
itschip committed Jun 18, 2021
1 parent b033eae commit ee8a8b6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { ESX } from './server';
import { pool } from './db';
import { Transfer, IBankCredentials, BankEvents } from '../../typings/bank';
import { mainLogger } from './sv_logger';
import { getSource } from './utils/miscUtils';
import PlayerService from './players/player.service';
import { ESX } from '../server';
import { pool } from '../db';
import { Transfer, IBankCredentials, BankEvents } from '../../../typings/bank';
import { mainLogger } from '../sv_logger';
import { getSource } from '../utils/miscUtils';
import PlayerService from '../players/player.service';

const bankLogger = mainLogger.child({ module: 'bank' });

Expand Down

0 comments on commit ee8a8b6

Please sign in to comment.