Started implementing server deletion

This commit is contained in:
2025-08-02 21:12:38 +02:00
parent 5c170935b4
commit 2e4c933fbe
2 changed files with 68 additions and 2 deletions

View File

@@ -190,6 +190,11 @@ public class Server : IAsyncDisposable
});
}
public async Task Delete()
{
await FileSystem.Delete();
}
#region State machine handlers
private async Task HandleStart()