github.com/aminjam/goflat@v0.4.1-0.20160331105230-ec639fc0d5b3/.examples/inputs/a-private-note (about)

     1  package main
     2  
     3  type Private struct {
     4  	Password string
     5  	Secret   string
     6  }
     7  
     8  func NewPrivate() Private {
     9  	return Private{
    10  		Password: "team3",
    11  		Secret:   "cloud-foundry",
    12  	}
    13  }