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