mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-31 09:03:21 +01:00
14 lines
357 B
C#
14 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);
|
|
}
|
|
}
|
|
}
|