You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
248 B

  1. package main
  2. type UserModel struct {
  3. ID string `json:"id"`
  4. Age int `json:",string"`
  5. Actions []string
  6. }
  7. type ItemModel struct {
  8. ID string
  9. TRecommended int
  10. TActed int
  11. }
  12. var scores []float64
  13. var ranking []ItemModel