12 lines
268 B
C#
12 lines
268 B
C#
using Mindforge.API.Models;
|
|
|
|
namespace Mindforge.API.Services.Interfaces
|
|
{
|
|
public interface IGiteaService
|
|
{
|
|
Task<List<FileTreeNode>> GetFileTreeAsync();
|
|
Task<string> GetFileContentAsync(string path);
|
|
string GetRepositoryName();
|
|
}
|
|
}
|