comparison src/private/tools/links.txt.luan @ 0:dfc36e7ed22c

init
author Vadim Filimonov <fffilimonov@yandex.ru>
date Thu, 12 May 2022 13:51:59 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dfc36e7ed22c
1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error
3 local pairs = Luan.pairs or error()
4 local Io = require "luan:Io.luan"
5 local Http = require "luan:http/Http.luan"
6 local Shared = require "site:/lib/Shared.luan"
7 local config = Shared.config or error()
8
9
10 return function()
11 Io.stdout = Http.response.text_writer()
12 for _, repo in pairs(config.repos) do
13 if repo.users.backup then
14 %>
15 <%=repo.name%>
16 <%
17 end
18 end
19 end