Organize workspace: Frontend, Backend, and Tests in one repo
This commit is contained in:
18
.vscode-server/data/User/History/b03096/77Sz.cs
Normal file
18
.vscode-server/data/User/History/b03096/77Sz.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Seasoned.Backend.DTOs;
|
||||
|
||||
namespace Seasoned.Backend.Services;
|
||||
|
||||
public class RecipeService : IRecipeService
|
||||
{
|
||||
public async Task<RecipeResponseDto> ParseRecipeImageAsync(IFormFile image)
|
||||
{
|
||||
// Placeholder logic to satisfy the return type
|
||||
return new RecipeResponseDto
|
||||
{
|
||||
Title = "Mock Recipe",
|
||||
Description = "This is a placeholder until Gemini is linked.",
|
||||
Ingredients = new List<string> { "Ingredient A", "Ingredient B" },
|
||||
Instructions = new List<string> { "Cook it", "Eat it" }
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user