first commit

This commit is contained in:
gelaws-hub 2025-07-31 19:39:06 +07:00
commit b344b6a03f
16 changed files with 405 additions and 0 deletions

View file

@ -0,0 +1,8 @@
using StitcherApi.Models;
namespace StitcherApi.Services;
public interface IImageService
{
Task<byte[]> GenerateImageAsync(GenerateImageRequest request);
}