From bc8d25088706ac808eb4c4e337ea02b57413c234 Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Fri, 6 Mar 2026 07:26:52 +1300 Subject: say unfinished --- internal/manifest/manifest.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'internal/manifest/manifest.go') diff --git a/internal/manifest/manifest.go b/internal/manifest/manifest.go index aea7fbe..79642cc 100644 --- a/internal/manifest/manifest.go +++ b/internal/manifest/manifest.go @@ -3,6 +3,15 @@ package manifest +import ( + "fmt" + "encoding/json" + "net/http" + "log" + "io" + "errors" +) + type KiiroToml struct { Name string `toml:"pkgname"` Version string `toml:"version"` @@ -12,3 +21,7 @@ type KiiroToml struct { Depends []string `toml:"deps"` } +func FetchKiiroToml(url string) (*KiiroToml, error) { + fmt.Println("Fetching kiiro.toml...") + return nil, errors.New("not implemented") +} -- cgit v1.2.3