Implement PATCH-ing to the api

This commit is contained in:
2024-06-17 14:02:25 +02:00
parent db79ff3622
commit f0b85f6f64
3 changed files with 88 additions and 6 deletions

10
download.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "log"
func Download(event PBEvent) (err error) {
log.Printf("Download event: %+v\n", event)
// SetDownloaded(event)
// ...do something
return nil
}