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

seq_repo_test.go 117 B

12345678910
  1. package repo
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func Test_seqDao_Incr(t *testing.T) {
  7. fmt.Println(SeqRepo.Incr(1, 5))
  8. }