Files
parr_api/PARR.TemplateUpdater/ITemplateUpdater.cs

9 lines
141 B
C#
Raw Permalink Normal View History

namespace PARR.TemplateUpdater
{
public interface ITemplateUpdater
{
Task StartAsync();
Task StopAsync();
}
}