Updated web ui

This commit is contained in:
2024-10-05 16:41:34 +03:00
parent 49403e70fd
commit c61a9d5e51
8 changed files with 68 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ public class Entry : ICommandAction
public bool RequireOtherThread => false;
public async Task Execute(string[]? args)
public Task Execute(string[]? args)
{
try{
string appUiComponent = "./Data/Test/libtestlib.dll";
@@ -49,5 +49,7 @@ public class Entry : ICommandAction
} catch (Exception dllException) {
Application.Logger.LogException(dllException, this);
}
return Task.CompletedTask;
}
}