default close

This commit is contained in:
Jack Gerrits 2025-01-27 12:33:34 -05:00 committed by Jack Gerrits
parent b0d268fae2
commit 35dd8f0d9e

View File

@ -13,6 +13,6 @@ public interface IAgent : ISaveState<IAgent>
public interface IHostableAgent : IAgent
{
public ValueTask CloseAsync();
public ValueTask CloseAsync() => ValueTask.CompletedTask;
}