Files
youtube-downloader/downloader/types.go
PhatPhuckDave 8d55bcb5ee Refactor everything to use nsq instead of hosting a http server
The point of this is (hopefully) some sort of resiliency
I do not want to lose any messages ever
And I want to be able to kill this process whenever it is misbehaving
Hopefully this achieves that goal
2024-10-13 23:20:06 +02:00

5 lines
76 B
Go

package main
type DownloadRequest struct {
Link string `json:"link"`
}