Fix global var redeclaration

This commit is contained in:
2023-12-24 15:50:03 -06:00
parent 4dce1de842
commit e7ef04ac42
2 changed files with 5 additions and 4 deletions

View File

@@ -1,13 +1,13 @@
package main
import (
"net/http/cookiejar"
"net/http"
"net/url"
log "github.com/rs/zerolog/log"
)
func setup(cookies *cookiejar.Jar) {
func setup(cookies *http.CookieJar) {
// Makes the initial requests that sets up the session cookies for the rest of the application
log.Info().Msg("Setting up session...")