24 lines
470 B
C#
24 lines
470 B
C#
using MediatR;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BrightGlimmer.Api.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class CourseController : ControllerBase
|
|
{
|
|
private readonly IMediator mediator;
|
|
|
|
public CourseController(IMediator mediator)
|
|
{
|
|
this.mediator = mediator;
|
|
}
|
|
|
|
[HttpGet]
|
|
public ActionResult<string> Get()
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
}
|