We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
meta
1 parent 5e41ce9 commit 9a479d9Copy full SHA for 9a479d9
parser/definitions/meta.go
@@ -3,9 +3,13 @@ package definitions
3
import "github.com/blackstork-io/fabric/plugin"
4
5
type MetaBlock struct {
6
- // XXX: is empty sting enougth or use a proper ptr-nil-if-missing?
7
- Author string `hcl:"author,optional"`
8
- Tags []string `hcl:"tags,optional"`
+ Name string `hcl:"name,optional"`
+ Description string `hcl:"description,optional"`
+ Url string `hcl:"url,optional"`
9
+ License string `hcl:"license,optional"`
10
+ Author string `hcl:"author,optional"`
11
+ Tags []string `hcl:"tags,optional"`
12
+ UpdatedAt string `hcl:"updated_at,optional"`
13
14
// TODO: ?store def range defRange hcl.Range
15
}
0 commit comments