got dotenv parsing working
CI / Detect changed paths (pull_request) Successful in 4s
CI / Odin unit tests and build (pull_request) Successful in 41s
CI / API unit tests and lint (pull_request) Failing after 33s
CI / Infra unit tests, vet, and preview (pull_request) Successful in 26s

This commit is contained in:
2026-09-08 01:09:55 -06:00
parent fade4a17dc
commit 3a037b5fd3
4 changed files with 22 additions and 12 deletions
+7
View File
@@ -1,5 +1,8 @@
package main
import "core:net"
import "vendor:curl"
Catalog :: struct {
name: string,
release: string,
@@ -22,6 +25,10 @@ APIError :: struct {
}
get_catalogs :: proc(url: string) -> ([dynamic]Catalog, ^APIError) {
ucurl := curl.url()
defer curl.url_cleanup(ucurl)
return nil, nil
}