github.com/servernoj/jade@v0.0.0-20231225191405-efec98d19db1/testdata/imp/model/data.go (about)

     1  package model
     2  
     3  type User struct {
     4  	FirstName      string
     5  	Email          string
     6  	FavoriteColors []string
     7  	RawContent     string
     8  	Id             int
     9  }
    10  
    11  type Story struct {
    12  	StoryId  int
    13  	UserId   int
    14  	UserName string
    15  }