Add JwtService

This commit is contained in:
2026-08-30 20:09:56 +03:00
parent 90143e180f
commit c70b9b6174
5 changed files with 73 additions and 3 deletions
@@ -0,0 +1,8 @@
using AMessanger.Core.Models;
namespace AMessanger.Core.Abstraction;
public interface IJwtService
{
public string GenerateToken(User user);
}