feat: 异步

main
LyMysterious 11 months ago
parent 7229ac4e1f
commit bbf53fa699

@ -26,7 +26,7 @@ namespace RoBot.Start.Cmd
} }
} }
} }
return true; return await Task.FromResult(true);
} }
} }
} }

@ -57,7 +57,7 @@ namespace RoBot.Start.Cmd
} }
} }
} }
return true; return await Task.FromResult(true);
} }
} }
} }

@ -45,7 +45,7 @@ namespace RoBot.Start.Cmd
} }
} }
return true; return await Task.FromResult(true);
} }
/// <summary> /// <summary>

Loading…
Cancel
Save