mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
9 lines
141 B
C#
9 lines
141 B
C#
using API.Entities;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface ITokenService
|
|
{
|
|
string CreateToken(AppUser user);
|
|
}
|
|
} |