new version

This commit is contained in:
ZOMBIIIIIII
2026-04-14 20:22:51 +03:00
parent 37146f7375
commit 89cb6174b7
144 changed files with 1710 additions and 17258 deletions

View File

@@ -1,9 +1,8 @@
import { Router } from 'express';
import { WalletController } from '../controllers/wallet.controller';
import { bitokAuth } from '../middleware/bitok-auth';
const router = Router();
router.get('/', bitokAuth, WalletController.getWallets);
router.get('/', WalletController.getWallets);
export default router;