adding gitea service

This commit is contained in:
2026-03-26 19:36:25 -03:00
parent 76cdb9654e
commit 83b1cb397d
16 changed files with 658 additions and 166 deletions

View File

@@ -0,0 +1,11 @@
using Mindforge.API.Models;
namespace Mindforge.API.Services.Interfaces
{
public interface IGiteaService
{
Task<List<FileTreeNode>> GetFileTreeAsync();
Task<string> GetFileContentAsync(string path);
string GetRepositoryName();
}
}