using AIStudio.Tools.Rust;
namespace AIStudio.Tools.Services;
public sealed partial class RustService
{
///
/// Get the paths of the log files.
///
/// The paths of the log files.
public async Task GetLogPaths()
{
return await this.http.GetFromJsonAsync("/log/paths", this.jsonRustSerializerOptions);
}
}