refactor: rearrange & rename files, fix meeting times response decode

This commit is contained in:
2025-08-26 11:21:38 -05:00
parent ae50b1462c
commit 49fa964d3a
13 changed files with 63 additions and 67 deletions

View File

@@ -1,7 +1,7 @@
package api
import (
"banner/internal/utils"
"banner/internal"
"net/url"
log "github.com/rs/zerolog/log"
@@ -18,7 +18,7 @@ func (a *API) Setup() {
for _, path := range requestQueue {
req := a.config.Client.NewRequest().
SetQueryParam("_", utils.Nonce()).
SetQueryParam("_", internal.Nonce()).
SetExpectResponseContentType("application/json")
res, err := req.Get(path)