diff options
author | Tim Keller <tjkeller.xyz> | 2025-05-23 22:12:05 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-05-23 22:12:05 -0500 |
commit | 285c3e573e1d01b952342aeaf91aa09303883ebf (patch) | |
tree | 11338a9e0924bb1e18303c5f07e651ef44b4d34d /main.go | |
parent | 865911f8ffdac7d1d9773570216c0bd35fc601d9 (diff) | |
download | mintube-285c3e573e1d01b952342aeaf91aa09303883ebf.tar.xz mintube-285c3e573e1d01b952342aeaf91aa09303883ebf.zip |
docker support and readme
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ import ( ) const youtubeAPI = "https://www.googleapis.com/youtube/v3/" -var tmpl = template.Must(template.ParseFiles("template.html")) +var tmpl = template.Must(template.ParseFiles("templates/watch.html")) func apiRequest(w http.ResponseWriter, r *http.Request, endpoint string, videoIdParam string, part string) { videoID := r.URL.Query().Get("id") |