BotSharp/src/Infrastructure/BotSharp.OpenAPI/Controllers/FileController.cs
2024-05-29 19:27:38 -05:00

14 lines
263 B
C#

namespace BotSharp.OpenAPI.Controllers;
[Authorize]
[ApiController]
public class FileController : ControllerBase
{
private readonly IServiceProvider _services;
public FileController(IServiceProvider services)
{
_services = services;
}
}