From a40b50e9cba53b04cb4dbaac6dff08362c5a671b Mon Sep 17 00:00:00 2001 From: Cypress Reed Date: Thu, 30 Jul 2026 18:28:54 -0600 Subject: [PATCH] feat(andax): add google source functions --- content/docs/andaman/andax.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/docs/andaman/andax.mdx b/content/docs/andaman/andax.mdx index cb29df65..f27f8aaf 100644 --- a/content/docs/andaman/andax.mdx +++ b/content/docs/andaman/andax.mdx @@ -144,6 +144,16 @@ let latest_tag = forgejo_tag("forgejo.ellis.link", "continuwuation/continuwuity" let latest_commit = forgejo_commit("forgejo.ellis.link", "continuwuation/continuwuity"); // WARN: There is no `forgejo_rawfile()`. +// Google Source hosts different projects at subdomains +let googlesource_latest = googlesource("go.googlesource.com/go"); +let googlesource_tag_latest = googlesource_tag("go.googlesource.com/go"); +let googlesource_commit_latest = googlesource_commit("go.googlesource.com/go"); +let googlesource_readme = googlesource_rawfile( + "chromium.googlesource.com/chromium/src", + "main", + "tools/symsrc/source_index.py", +); + // Others let pypi_latest = pypi("example"); let max_stable_version = crates("anda");