jellyfin/MediaBrowser.Server.Implementations/Reflection/AssemblyInfo.cs
2016-10-26 02:01:42 -04:00

15 lines
357 B
C#

using System;
using System.IO;
using MediaBrowser.Model.Reflection;
namespace MediaBrowser.Server.Implementations.Reflection
{
public class AssemblyInfo : IAssemblyInfo
{
public Stream GetManifestResourceStream(Type type, string resource)
{
return type.Assembly.GetManifestResourceStream(resource);
}
}
}