1 package options 2 3 type Jack struct { 4 ProjectNumber int `yaml:"project_number"` 5 Preamble string `yaml:"preamble"` 6 Postamble string `yaml:"postamble"` 7 PrCommentIdentifier string `yaml:"pr_comment_identifier"` 8 PRIssueLink string `yaml:"pr_issue_link"` 9 } 10 11 // commenting out to leave hanging 12 type PluginOptions struct { 13 //Jack Jack 14 } 15