BotSharp/src/Infrastructure/BotSharp.OpenAPI/Controllers/FileController.cs

14 lines
263 B
C#
Raw Normal View History

2024-05-06 07:59:03 +00:00
namespace BotSharp.OpenAPI.Controllers;
[Authorize]
[ApiController]
public class FileController : ControllerBase
{
private readonly IServiceProvider _services;
public FileController(IServiceProvider services)
{
_services = services;
}
}