mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
13 lines
178 B
Go
13 lines
178 B
Go
package provider
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type RequestID func() string
|
|
|
|
// DefaultRequestID function
|
|
func DefaultRequestID() string {
|
|
return uuid.New().String()
|
|
}
|