8 lines
136 B
Go
8 lines
136 B
Go
|
|
package access
|
||
|
|
|
||
|
|
import "strings"
|
||
|
|
|
||
|
|
func selfServiceProbeAPIKey(req ClosureRequest) string {
|
||
|
|
return strings.TrimSpace(req.ProbeAPIKey)
|
||
|
|
}
|