Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(PDNS): update custom resolver profile and views #202

Merged
merged 16 commits into from
Jan 10, 2025
Merged
7 changes: 7 additions & 0 deletions common/headers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ package common
import (
"fmt"
"runtime"

"github.com/IBM/go-sdk-core/v5/core"
)

const (
Expand Down Expand Up @@ -80,3 +82,8 @@ var systemInfo = fmt.Sprintf("(lang=go; arch=%s; os=%s; go.version=%s)", runtime
func GetSystemInfo() string {
return systemInfo
}

func GetComponentInfo() *core.ProblemComponent {
// This should match the module name in go.mod.
return core.NewProblemComponent("github.com/IBM/networking-go-sdk", Version)
}
Loading