Replaced tab spaces in the README with whitespaces

This commit is contained in:
ChaoticByte 2023-10-11 22:22:49 +02:00
parent a6377b805d
commit 24f4aeca18

View file

@ -143,19 +143,19 @@ All fields from the WidNotice struct can be used.
```go ```go
type WidNotice struct { type WidNotice struct {
Uuid string Uuid string
Name string Name string
Title string Title string
Published time.Time Published time.Time
Classification string Classification string
// optional fields (only fully supported by cert-bund) // optional fields (only fully supported by cert-bund)
Basescore int // -1 = unknown Basescore int // -1 = unknown
Status string // "" = unknown Status string // "" = unknown
ProductNames []string // empty = unknown ProductNames []string // empty = unknown
Cves []string // empty = unknown Cves []string // empty = unknown
NoPatch string // "" = unknown NoPatch string // "" = unknown
// metadata // metadata
PortalUrl string PortalUrl string
} }
``` ```