Remove Go code

This commit is contained in:
2025-11-13 13:07:21 +01:00
parent fc5fc66d5f
commit 3c31a0da83

39
main.go
View File

@@ -1,39 +0,0 @@
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
token := "mytoken"
url := "https://watchtower.seeseepuff.be/v1/update"
req, err := http.NewRequest("GET", url, nil)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to create request: %v\n", err)
os.Exit(1)
}
req.Header.Set("Authorization", "Bearer "+token)
fmt.Printf("Triggering Watchtower update...")
resp, err := http.DefaultClient.Do(req)
if err != nil {
fmt.Fprintf(os.Stderr, "HTTP request failed: %v\n", err)
os.Exit(1)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
fmt.Fprintf(os.Stderr, "HTTP request failed: %s\n", resp.Status)
os.Exit(1)
}
if _, err := io.Copy(os.Stdout, resp.Body); err != nil {
fmt.Fprintf(os.Stderr, "Failed to read response: %v\n", err)
os.Exit(1)
}
fmt.Printf("Done!")
}