files tree made better.
This commit is contained in:
parent
ffbf032480
commit
ccc91bbf19
1630 changed files with 18209 additions and 41860 deletions
34
src/Yavsc/ApiControllers/Streaming/StreamingApiController.cs
Normal file
34
src/Yavsc/ApiControllers/Streaming/StreamingApiController.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
|
||||
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Yavsc {
|
||||
|
||||
public class StreamingApiController {
|
||||
|
||||
ILogger _logger;
|
||||
|
||||
public StreamingApiController (LoggerFactory loggerFactory)
|
||||
{
|
||||
_logger = loggerFactory.CreateLogger<StreamingApiController>();
|
||||
_logger.LogInformation
|
||||
("created logger");
|
||||
}
|
||||
|
||||
public async Task<IActionResult> GetStreamingToken()
|
||||
{
|
||||
_logger.LogInformation("Token asked");
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public async Task<IActionResult> GetLiveStreamingIndex()
|
||||
{
|
||||
_logger.LogInformation("GetLiveStreamingIndex");
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue