mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
13 lines
289 B
Go
13 lines
289 B
Go
package gls
|
|
|
|
var (
|
|
symPool = &idPool{}
|
|
)
|
|
|
|
// ContextKey is a throwaway value you can use as a key to a ContextManager
|
|
type ContextKey struct{ id uint }
|
|
|
|
// GenSym will return a brand new, never-before-used ContextKey
|
|
func GenSym() ContextKey {
|
|
return ContextKey{id: symPool.Acquire()}
|
|
}
|