コード例 #1
0
ファイル: profile.go プロジェクト: Zenithar/gene
func (p *Profile) Update(ctx context.Context, req *models.Account, res *models.Account) error {
	return db.MustGetDB(ctx).Update(models.NewProfile(), req, res)
}
コード例 #2
0
ファイル: twitter.go プロジェクト: Zenithar/gene
func (t *Tweet) One(ctx context.Context, req *models.Account, res *models.Account) error {
	return db.MustGetDB(ctx).One(models.NewTweet(), req, res)
}
コード例 #3
0
ファイル: account.go プロジェクト: Zenithar/gene
func (a *Account) Update(ctx context.Context, req *models.Account, res *models.Account) error {
	return db.MustGetDB(ctx).Update(models.NewAccount(), req, res)
}