2024-04-25 09:04:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once "lib/meme.php";
|
|
|
|
|
|
|
|
function endpoint($endpoint_data): array
|
|
|
|
{
|
|
|
|
|
|
|
|
return match ($endpoint_data["action"]) {
|
2024-04-25 22:08:02 +02:00
|
|
|
"addMeme" => addMeme($endpoint_data['meme_title'], $endpoint_data['meme_text'], $endpoint_data['meme_image_id']),
|
2024-04-25 09:40:21 +02:00
|
|
|
"renderGallery" => renderMemeGallery(),
|
2024-04-25 09:04:10 +02:00
|
|
|
default => ["Status" => "Fail", "message" => "Invalid action"],
|
|
|
|
};
|
|
|
|
}
|