2024-04-04 20:37:54 +00:00
|
|
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
|
2024-04-04 20:30:41 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"encoding/json"
|
|
|
|
_ "fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Resource struct {
|
|
|
|
Id string `json:"id",omitempty`
|
|
|
|
Resource string `json:"resource",omitempty`
|
|
|
|
Tags []string `json:"tags"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewResource() *Resource {
|
|
|
|
return &Resource{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewResourceFromJson(jsonReader io.Reader) (*Resource, error) {
|
|
|
|
r := NewResource()
|
|
|
|
err := json.NewDecoder(jsonReader).Decode(r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return r, nil
|
|
|
|
}
|