mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
* Process DMM all locally single call to github to download the repo archive. remove need for PAT update RTN to 0.2.13 change to batch_parse for title parsing from RTN * introduce concurrent dictionary, and parallelism
21 lines
710 B
C#
21 lines
710 B
C#
// Global using directives
|
|
|
|
global using System.Collections.Concurrent;
|
|
global using System.Text.Json;
|
|
global using System.Text.Json.Serialization;
|
|
global using System.Text.RegularExpressions;
|
|
global using Dapper;
|
|
global using MassTransit;
|
|
global using Microsoft.AspNetCore.Builder;
|
|
global using Microsoft.AspNetCore.Hosting;
|
|
global using Microsoft.Extensions.Configuration;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Hosting;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using Npgsql;
|
|
global using Python.Runtime;
|
|
global using Serilog;
|
|
global using SharedContracts.Configuration;
|
|
global using SharedContracts.Extensions;
|
|
global using SharedContracts.Models;
|