aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.AddIn/Services/IOcrClient.cs
blob: e22a49e81f8d9c81ce8d5bebbb0844c723720945 (plain)
1
2
3
4
5
6
7
8
using System.Threading.Tasks;

namespace RhSolutions.Services;

public interface IOcrClient
{
	public Task<IEnumerable<object[,]>> ProcessImage(string base64Image);
}