Remove outputs

This commit is contained in:
Peter Stuifzand 2020-05-17 16:09:52 +02:00
parent eb6dd6f2ee
commit f6577ed574
2 changed files with 0 additions and 3 deletions

View File

@ -2,7 +2,6 @@ package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"strings"
@ -50,7 +49,6 @@ func processBackrefs(fp *FilePages) error {
}
for _, link := range links {
fmt.Println(link.Line)
refs[link.PageName] = append(refs[link.PageName], Reference{link, page.Name})
}
}

View File

@ -145,7 +145,6 @@ func (*authHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
return
}
} else if r.URL.Path == "/auth/callback" {
log.Printf("%+v\n", sess)
code := r.URL.Query().Get("code")
state := r.URL.Query().Get("state")