Allowing tasks to take parameters

This commit is contained in:
Zoe Roux
2020-04-08 02:27:22 +02:00
parent f01b25b827
commit f00d1ec4e9
7 changed files with 21 additions and 15 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ namespace Kyoo.Controllers
{
public interface ITaskManager
{
bool StartTask(string taskSlug);
bool StartTask(string taskSlug, string arguments = null);
void ReloadTask();
}