blob: d611b71efda4de7362627b45f3c56c6cfba20b61 [file] [edit]
package sync
import (
"sync"
)
// Mutex is an alias to [sync.Mutex]
type Mutex = sync.Mutex
// RWMutex is an alias to [sync.RWMutex]
type RWMutex = sync.RWMutex
// WaitGroup is an alias to [sync.WaitGroup]
type WaitGroup = sync.WaitGroup