Snowflake/RPG.Services.Core/RPGServiceBase.cs

16 lines
385 B
C#
Raw Normal View History

2024-01-18 16:18:25 +00:00
using Microsoft.Extensions.Hosting;
namespace RPG.Services.Core;
public abstract class RPGServiceBase : IHostedService
{
public virtual Task StartAsync(CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
public virtual Task StopAsync(CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}