Skip to content

Commit

Permalink
rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
lsfera committed Jul 16, 2024
1 parent ca28054 commit f4cfe0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#pragma warning disable IL2091

namespace Blumchen.Workers;
namespace Blumchen.DependencyInjection;

public static class ServiceCollectionExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;

namespace Blumchen.Workers;
namespace Blumchen.DependencyInjection;

public class Worker<T>(
WorkerOptions options,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Blumchen.Subscriptions;
using Polly;

namespace Blumchen.Workers;
namespace Blumchen.DependencyInjection;

public record WorkerOptions(ResiliencePipeline ResiliencePipeline, ISubscriptionOptions SubscriptionOptions);

Expand Down
2 changes: 1 addition & 1 deletion src/SubscriberWorker/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using Blumchen.DependencyInjection;
using Blumchen.Serialization;
using Blumchen.Subscriptions;
using Commons;
Expand All @@ -10,7 +11,6 @@
using SubscriberWorker;
using Npgsql;
using Blumchen.Subscriptions.Management;
using Blumchen.Workers;
using Polly.Registry;


Expand Down

0 comments on commit f4cfe0c

Please sign in to comment.