UNPKG
dailyhot-api
Version:
latest (2.0.8)
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-rc.5
2.0.0-rc.4
2.0.0-rc.3
An Api on Today's Hot list
github.com/imsyy/DailyHotApi
imsyy/DailyHotApi
dailyhot-api
/
dist
/
robots.txt.js
12 lines
(11 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ config }
from
"./config.js"
;
const
handler
= (
c
) => {
if
(config.
DISALLOW_ROBOT
) {
return
c.
text
(
"User-agent: *\nDisallow: /"
); }
else
{ c.
status
(
404
);
return
c.
text
(
""
); } };
export
default
handler;