* update rtn to 025 * Implement movie / show type parsing * switch to RTN in collectors * ensure env for pythonnet is loaded, and that requirements copy for qbit * version bump
21 lines
785 B
C#
21 lines
785 B
C#
// Global using directives
|
|
|
|
global using System.Text.Json;
|
|
global using System.Text.Json.Serialization;
|
|
global using System.Threading.Channels;
|
|
global using DebridCollector.Extensions;
|
|
global using DebridCollector.Features.Configuration;
|
|
global using DebridCollector.Features.Debrid;
|
|
global using DebridCollector.Features.Worker;
|
|
global using MassTransit;
|
|
global using Microsoft.AspNetCore.Builder;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Polly;
|
|
global using Polly.Extensions.Http;
|
|
global using SharedContracts.Configuration;
|
|
global using SharedContracts.Dapper;
|
|
global using SharedContracts.Extensions;
|
|
global using SharedContracts.Models;
|
|
global using SharedContracts.Python;
|
|
global using SharedContracts.Python.RTN;
|
|
global using SharedContracts.Requests; |