This commit is contained in:
Colin 2024-06-26 11:12:58 -04:00
parent 8ab8c110c1
commit 2b04c03165
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -82,7 +82,9 @@ func uploadFile(filename string) (string, error) {
return "", fmt.Errorf("failed to read response: %w", err)
}
return string(urlBytes), nil
url := string(urlBytes)
log.Printf("Received URL: %s", url)
return url, nil
}
func installContextMenuItem() {