init
This commit is contained in:
parent
f49eec187f
commit
a339658a06
2 changed files with 49 additions and 0 deletions
26
Yavsc/ApiControllers/streaming/StreamingApiController.cs
Normal file
26
Yavsc/ApiControllers/streaming/StreamingApiController.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
|
||||
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>();
|
||||
}
|
||||
|
||||
public async Task<IActionResult> GetStreamingToken()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue