Cleaned up IndexerService and tests

This commit is contained in:
Mark McDowall 2013-02-21 08:38:31 -08:00
commit 563db453fc
6 changed files with 34 additions and 51 deletions

View file

@ -0,0 +1,7 @@
namespace NzbDrone.Core.Lifecycle
{
public interface IInitializable
{
void Init();
}
}