| 17 | ) |
| 18 | |
| 19 | type AuthProvider interface { |
| 20 | RegisterHandler(w http.ResponseWriter, r *http.Request) |
| 21 | AuthHandler(w http.ResponseWriter, r *http.Request) |
| 22 | RegisterURL(authID types.AuthID) string |
| 23 | AuthURL(authID types.AuthID) string |
| 24 | } |
| 25 | |
| 26 | func (h *Headscale) handleRegister( |
| 27 | ctx context.Context, |
no outgoing calls
no test coverage detected