package biz type ChildRef struct { UserID, ChildID string } func newChildRef(userId, childId string) *ChildRef { return &ChildRef{userId, childId} }