mirror of
https://gitee.com/johng/gf
synced 2026-07-04 04:52:48 +08:00
15 lines
661 B
Go
15 lines
661 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package guid provides simple and high performance unique id generation functionality.
|
|
//
|
|
// Unique String ID:
|
|
// PLEASE VERY NOTE:
|
|
// This package only provides unique number generation for simple, convenient and most common
|
|
// usage purpose, but does not provide strict global unique number generation. Please refer
|
|
// to UUID algorithm for global unique number generation if necessary.
|
|
package guid
|