using KanbnToQuartz.Services; using Microsoft.AspNetCore.Mvc; namespace KanbnToQuartz.Controllers; [ApiController] [Route("[controller]")] public class CopyController(CopyService CopyService) : ControllerBase { private readonly CopyService _CopyService = CopyService; [HttpGet()] public IActionResult Get() { _CopyService.CopyDirectory(); return Ok(); } }