mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 23:29:06 +00:00
15 lines
424 B
C#
15 lines
424 B
C#
using AIStudio.Tools.Rust;
|
|
|
|
namespace AIStudio.Tools.Services;
|
|
|
|
public sealed partial class RustService
|
|
{
|
|
/// <summary>
|
|
/// Get the paths of the log files.
|
|
/// </summary>
|
|
/// <returns>The paths of the log files.</returns>
|
|
public async Task<GetLogPathsResponse> GetLogPaths()
|
|
{
|
|
return await this.http.GetFromJsonAsync<GetLogPathsResponse>("/log/paths", this.jsonRustSerializerOptions);
|
|
}
|
|
} |