15 lines
347 B
C#
15 lines
347 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
using WebApplication1.Data;
|
|||
|
|
|||
|
namespace WebApplication1.Controller;
|
|||
|
|
|||
|
[Route("api/[controller]")]
|
|||
|
public class HomeController
|
|||
|
{
|
|||
|
[HttpGet]
|
|||
|
public string? Index()
|
|||
|
{
|
|||
|
var configuration = AppCConfigurationServices.Configuration;
|
|||
|
return configuration.GetConnectionString("BunnyTest");
|
|||
|
}
|
|||
|
}
|