guid.go 661 B

1234567891011121314
  1. // Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
  2. //
  3. // This Source Code Form is subject to the terms of the MIT License.
  4. // If a copy of the MIT was not distributed with this file,
  5. // You can obtain one at https://github.com/gogf/gf.
  6. // Package guid provides simple and high performance unique id generation functionality.
  7. //
  8. // Unique String ID:
  9. // PLEASE VERY NOTE:
  10. // This package only provides unique number generation for simple, convenient and most common
  11. // usage purpose, but does not provide strict global unique number generation. Please refer
  12. // to UUID algorithm for global unique number generation if necessary.
  13. package guid