keel/net/http/provider/requestidprovider.go
2022-08-16 16:37:40 +02:00

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()
}