mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-27 12:31:57 +00:00
Simplify file serving code
This commit is contained in:
@@ -1,16 +1,7 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using MediaBrowser.Model.Services;
|
||||
|
||||
namespace MediaBrowser.Controller
|
||||
{
|
||||
public interface IResourceFileManager
|
||||
{
|
||||
Task<object> GetStaticFileResult(IRequest request, string basePath, string virtualPath, string contentType, TimeSpan? cacheDuration);
|
||||
|
||||
Stream GetResourceFileStream(string basePath, string virtualPath);
|
||||
|
||||
string ReadAllText(string basePath, string virtualPath);
|
||||
string GetResourcePath(string basePath, string virtualPath);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user