github.com/hellofresh/janus@v0.0.0-20230925145208-ce8de8183c67/pkg/test/model.go (about)

     1  package test
     2  
     3  // Tag represents the recipe tags
     4  type Tag string
     5  
     6  // Recipe represents a hellofresh recipe
     7  type Recipe struct {
     8  	Name string `bson:"name" json:"name"`
     9  	Tags []Tag  `bson:"tags" json:"tags"`
    10  }