tagger/internal/models/tag.go
Matthew Rich 14fda44c41
Some checks failed
Lint / golangci-lint (push) Failing after 10m25s
Declarative Tests / test (push) Failing after 1m59s
add artifacts
2024-04-04 13:37:54 -07:00

28 lines
495 B
Go

// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package models
import (
"io"
"encoding/json"
)
type Tag struct {
Id string `json:"id",omitempty`
Name string `json:"name",omitempty`
Resources []string `json:"resources"`
}
func NewTag() *Tag {
return &Tag{}
}
func NewTagFromJson(jsonReader io.ReadCloser) (*Tag, error) {
t := NewTag()
err := json.NewDecoder(jsonReader).Decode(t)
if err != nil {
return nil, err
}
return t, nil
}