您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
239 B

  1. //go:generate mockgen -destination mock/concurrent_mock.go github.com/golang/mock/sample/concurrent Math
  2. // Package concurrent demonstrates how to use gomock with goroutines.
  3. package concurrent
  4. type Math interface {
  5. Sum(a, b int) int
  6. }