This commit is contained in:
2023-08-17 12:34:54 -04:00
parent 5ccae68c6a
commit abaf7b918c
2 changed files with 6 additions and 32 deletions

View File

@@ -1,8 +1,10 @@
const pageSize = 20
const courtesyWait = 10 * 1000
const courtesyWait = 1000
const tooLongAgo = 7 * 2 // Days
const feeds = {
nitter: []
nitter: [],
tumblr: []
}
const sources = {
@@ -104,23 +106,10 @@ const sources = {
]
}
const endPage = `
<html>
<body>
<center>
<img src="end.jpg">
<h4>You have reached the end</h4>
<hr>
</center>
</body>
</html>`
module.exports = {
feeds,
sources,
pageSize,
courtesyWait,
endPage
tooLongAgo
}