using Mindforge.API.Models; namespace Mindforge.API.Services.Interfaces { public interface IGiteaService { Task> GetFileTreeAsync(); Task GetFileContentAsync(string path); string GetRepositoryName(); } }