mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
14 lines
328 B
PHP
14 lines
328 B
PHP
<?php return [
|
|
'code' => 200,
|
|
'mime' => "application/rss+xml",
|
|
'lastMod' => time() + 2000,
|
|
'content' => <<<MESSAGE_BODY
|
|
<rss version="2.0">
|
|
<channel>
|
|
<title>Test feed</title>
|
|
<link>http://example.com/</link>
|
|
<description>A basic feed for testing</description>
|
|
</channel>
|
|
</rss>
|
|
MESSAGE_BODY
|
|
];
|