mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
7 lines
185 B
C#
7 lines
185 B
C#
namespace AIStudio.Tools.Services;
|
|
|
|
public sealed class NativeShareService(RustService rustService)
|
|
{
|
|
public Task<bool> Share(string filePath) => rustService.ShareFile(filePath);
|
|
}
|