The backend for the project formerly known as signet, now known as beignet.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
237 B

  1. package main
  2. import "github.com/imosed/signet/data"
  3. func SumContributions(contributions []data.Contribution) (sum float64) {
  4. total := 0.0
  5. for _, contribution := range contributions {
  6. total += contribution.Amount
  7. }
  8. return total
  9. }