diff options
author | crupest <crupest@outlook.com> | 2021-04-23 17:28:18 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-23 17:37:37 +0800 |
commit | 6e067a28d8527726a2a17045bef0f0e3d3430ed5 (patch) | |
tree | 967ed4c84981d6b626a3370c726d35d1c3e2c2b4 /BackEnd/Timeline/Services/Migration/MigationServiceCollectionExtensions.cs | |
parent | 6acef36dc717834605eda2af9e1738dac8fa2f6d (diff) | |
download | timeline-6e067a28d8527726a2a17045bef0f0e3d3430ed5.tar.gz timeline-6e067a28d8527726a2a17045bef0f0e3d3430ed5.tar.bz2 timeline-6e067a28d8527726a2a17045bef0f0e3d3430ed5.zip |
refactor: Refactor a lot.
Diffstat (limited to 'BackEnd/Timeline/Services/Migration/MigationServiceCollectionExtensions.cs')
-rw-r--r-- | BackEnd/Timeline/Services/Migration/MigationServiceCollectionExtensions.cs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/BackEnd/Timeline/Services/Migration/MigationServiceCollectionExtensions.cs b/BackEnd/Timeline/Services/Migration/MigationServiceCollectionExtensions.cs deleted file mode 100644 index 0e6f6c0a..00000000 --- a/BackEnd/Timeline/Services/Migration/MigationServiceCollectionExtensions.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Microsoft.Extensions.DependencyInjection;
-
-namespace Timeline.Services.Migration
-{
- public static class MigrationServiceCollectionExtensions
- {
- public static IServiceCollection AddCustomMigration(this IServiceCollection services)
- {
- services.AddScoped<ICustomMigrationManager, CustomMigrationManager>();
- services.AddScoped<ICustomMigration, TimelinePostContentToDataMigration>();
- return services;
- }
- }
-}
\ No newline at end of file |