1# yt downloader simple frontend
2
3This projects aim to automat a bit youtube-dl/yt-dlp downloads. A glorified cron
4job.
5
6# Brain storm
7
8``` go
9struct YdlEntry {
10 id int,
11 link string,
12 format string
13 output_folder string,
14}
15
16struct Log {
17 id int,
18 yentry int,
19 logs string,
20}
21```
22