• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-client-gateway / 8817207246

24 Apr 2024 01:15PM UTC coverage: 92.337% (+0.03%) from 92.306%
8817207246

Pull #1451

github

hectorgomezv
Update docker-compose redis-stack image to 7.2.0-v10
Pull Request #1451: Update docker-compose redis image

1929 of 2348 branches covered (82.16%)

Branch coverage included in aggregate %.

6964 of 7283 relevant lines covered (95.62%)

312.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/datasources/transaction-api/transaction-api.module.ts
1
import { Module } from '@nestjs/common';
×
2
import { CacheFirstDataSourceModule } from '@/datasources/cache/cache.first.data.source.module';
×
3
import { HttpErrorFactory } from '@/datasources/errors/http-error-factory';
×
4
import { TransactionApiManager } from '@/datasources/transaction-api/transaction-api.manager';
×
5
import { ITransactionApiManager } from '@/domain/interfaces/transaction-api.manager.interface';
×
6
import { ConfigApiModule } from '@/datasources/config-api/config-api.module';
×
7

8
@Module({
9
  imports: [CacheFirstDataSourceModule, ConfigApiModule],
10
  providers: [
11
    HttpErrorFactory,
12
    { provide: ITransactionApiManager, useClass: TransactionApiManager },
13
  ],
14
  exports: [ITransactionApiManager],
15
})
16
export class TransactionApiModule {}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc