Use file-scoped namespace

This commit is contained in:
Patrick Barron 2023-11-15 19:49:15 -05:00
parent 7e645dcfc0
commit c38bfd281c

View File

@ -23,8 +23,8 @@ using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Session; using MediaBrowser.Model.Session;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.EntryPoints namespace Emby.Server.Implementations.EntryPoints;
{
public sealed class LibraryChangedNotifier : IServerEntryPoint public sealed class LibraryChangedNotifier : IServerEntryPoint
{ {
private readonly ILibraryManager _libraryManager; private readonly ILibraryManager _libraryManager;
@ -423,4 +423,3 @@ namespace Emby.Server.Implementations.EntryPoints
} }
} }
} }
}