mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
7 lines
249 B
Go
7 lines
249 B
Go
// Package databroker contains databroker protobuf definitions.
|
|
package databroker
|
|
|
|
// GetUserID gets the databroker user id from a provider user id.
|
|
func GetUserID(provider, providerUserID string) string {
|
|
return provider + "/" + providerUserID
|
|
}
|