GITLAB

陆恒 / new_catcafe

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • new_catcafe
  • src
  • HttpServer
  • logic
  • uuid.go
  • 0fc94993   增加生成uuid Browse Code »
    陆恒
    2020-04-28 10:00:11 +0800  
uuid.go 170 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package logic

import (
	"common/logger"
	"github.com/segmentio"
)

func Test() {

	for i:=0;i<100;i++ {

		id := ksuid.New()
		logger.Info("Test........id=%v",id)
	}

}