mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
13 lines
287 B
PHP
13 lines
287 B
PHP
|
<?php return [
|
||
|
'code' => 200,
|
||
|
'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
|
||
|
];
|