From eb4ebdb6120e9c5b57e75cbf7119ee92ae277ef4 Mon Sep 17 00:00:00 2001 From: Sawada Shota Date: Wed, 28 Aug 2019 08:48:39 +0900 Subject: [PATCH] docs: Fix outdated validation hook's link (#1351) --- docs/content/intro/why.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/intro/why.md b/docs/content/intro/why.md index 2c21409e..ce1e3c43 100644 --- a/docs/content/intro/why.md +++ b/docs/content/intro/why.md @@ -21,7 +21,7 @@ The Go community has had lots of problems with libraries disappearing or changin ### Logic -The fact that the Go command line can now ping _your own_ server to download dependencies, that means you can program whatever logic you want around providing such dependencies. Things like Access Control (discussed below), adding custom versions, custom forks, and custom packages. For example, Athens provides a [Validation Hook](https://github.com/gomods/athens/blob/master/config.dev.toml#L87) that will get called for every module download to determine whether a module should be downloaded or not. Therefore, you can extend Athens with your own logic such as scanning a module path or code for red flags etc. +The fact that the Go command line can now ping _your own_ server to download dependencies, that means you can program whatever logic you want around providing such dependencies. Things like Access Control (discussed below), adding custom versions, custom forks, and custom packages. For example, Athens provides a [Validation Hook](https://github.com/gomods/athens/blob/master/config.dev.toml#L127) that will get called for every module download to determine whether a module should be downloaded or not. Therefore, you can extend Athens with your own logic such as scanning a module path or code for red flags etc. ### Performance