From daa7e3710c6971cc84bb6aae09dda4cada587ec5 Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Wed, 15 Jan 2025 01:14:03 +0200 Subject: [PATCH] docs: update `api.go` reference (#1912) ## What kind of change does this PR introduce? docs ## What is the current behavior? Commit 1a52eb6e3aaa5a2331bab2cf233856fa6f6015d8 moved `api.go` to `internal`, without updating all references. ## What is the new behavior? This PR adjusts sources to changes. ## Additional context Signed-off-by: Emmanuel Ferdman --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae43ad4a14..6ec3367e1c 100644 --- a/README.md +++ b/README.md @@ -468,7 +468,7 @@ The base URL used for constructing the URLs to request authorization and access To try out external authentication with Apple locally, you will need to do the following: 1. Remap localhost to \ in your `/etc/hosts` config. -2. Configure auth to serve HTTPS traffic over localhost by replacing `ListenAndServe` in [api.go](api/api.go) with: +2. Configure auth to serve HTTPS traffic over localhost by replacing `ListenAndServe` in [api.go](internal/api/api.go) with: ``` func (a *API) ListenAndServe(hostAndPort string) {