Simplify failure handling

This commit is contained in:
2025-11-01 19:28:20 +09:00
parent 821eeb41ae
commit 737e581f75
5 changed files with 19 additions and 21 deletions

View File

@ -2,6 +2,6 @@
{
public interface IResultGetter
{
Task<ResultGetterResponse> GetAsync();
Task<bool> GetAsync();
}
}