Files
parr_api/PARR.TemplateUpdater/ITemplateUpdater.cs
2025-12-04 08:23:57 +10:00

9 lines
141 B
C#

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