package
0.0.0-20240930212407-d384f87bdcd5
Repository: https://github.com/listendev/pkg.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
Analysis Request
This package provides a way to create the request to analyze a package.
Installation
go get github.com/listendev/pkg/analysisrequest
Usage
Unmarshal a request from JSON
package main
import (
"github.com/davecgh/go-spew/spew"
"github.com/listendev/pkg/analysisrequest"
"github.com/listendev/pkg/npm"
"github.com/listendev/pkg/observability"
)
func main() {
arJSON := `{"type": "urn:scheduler:dynamic!npm,install.json", "snowflake_id": "1524854487523524608", "name": "chalk"}`
// you can use the observability package to create a context with tracing and logging here
ctx := observability.NewNopContext()
arbuilder, _ := analysisrequest.NewBuilder(ctx)
regClient, _ := npm.NewNPMRegistryClient(npm.NPMRegistryClientConfig{})
arbuilder.WithNPMRegistryClient(regClient)
ar, _ := arbuilder.FromJSON([]byte(arJSON))
spew.Dump(ar.(analysisrequest.NPM))
}