Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
🖊️ Fixed naming for Queue interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
PureKrome committed Mar 4, 2019
1 parent 2745798 commit 417f354
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Homely.Storage.Queues/AzureStorageQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Homely.Storage.Queues
{
public class AzureStorageQueue : IAzureStorageQueue
public class AzureStorageQueue : IQueue
{
private readonly ILogger<AzureStorageQueue> _logger;
private readonly string _connectionString;
Expand Down
2 changes: 1 addition & 1 deletion src/Homely.Storage.Queues/IQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Homely.Storage.Queues
{
public interface IAzureStorageQueue
public interface IQueue
{
/// <summary>
/// Name of the Queue.
Expand Down

0 comments on commit 417f354

Please sign in to comment.