mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 09:50:29 +00:00
13 lines
327 B
C#
13 lines
327 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace OtherWay.Radio.Scheduler.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
public class InterfaceController : ControllerBase {
|
|
private readonly ILogger<InterfaceController> _logger;
|
|
|
|
public InterfaceController(ILogger<InterfaceController> logger) {
|
|
_logger = logger;
|
|
}
|
|
} |