(key []byte)
| 59 | } |
| 60 | |
| 61 | func setScimAuth(key []byte) func(*http.Request) { |
| 62 | return func(r *http.Request) { |
| 63 | r.Header.Set("Authorization", string(key)) |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | func setScimAuthBearer(key []byte) func(*http.Request) { |
| 68 | return func(r *http.Request) { |