utils.go 252 B

1234567891011121314151617
  1. package common
  2. import (
  3. "encoding/hex"
  4. "github.com/google/uuid"
  5. "github.com/labring/aiproxy/core/common/conv"
  6. )
  7. func ShortUUID() string {
  8. var buf [32]byte
  9. bytes := uuid.New()
  10. hex.Encode(buf[:], bytes[:])
  11. return conv.BytesToString(buf[:])
  12. }