using Microsoft.AspNetCore.Mvc; using System.Text.Json; namespace NeDvachAPI.Controllers { [ApiController] [Route("[controller]")] public class HomeController : ControllerBase { [HttpGet(Name = "GetPosts")] public string Get() { Post[] posts = DBchat.DbList(); string postsJson = JsonSerializer.Serialize(posts); return postsJson ; } } }