aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 87fb987623926f07fb068890f6027e6584263d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# yt downloader simple frontend

This projects aim to automat a bit youtube-dl/yt-dlp downloads. A glorified cron
job.

# Brain storm

``` go
struct YdlEntry {
    id            int,
    link          string,
    format        string
    output_folder string,
}

struct Log {
    id     int,
    yentry int,
    logs   string,
}
```