🗃️ Chat room modeling

This commit is contained in:
2025-05-02 01:27:49 +08:00
parent e4031478b5
commit b675b0550b
4 changed files with 83 additions and 2 deletions

View File

@ -0,0 +1,15 @@
using DysonNetwork.Sphere.Account;
using DysonNetwork.Sphere.Realm;
using DysonNetwork.Sphere.Chat;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using System.Threading.Tasks;
namespace DysonNetwork.Sphere.Chat;
[ApiController]
[Route("/chat")]
public class ChatController(AppDatabase db) : ControllerBase
{
}