Skip to content

Commit

Permalink
Update download.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim authored Sep 4, 2024
1 parent 4835b63 commit b94cdbb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions assets/js/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,18 @@ const data = [
link: DOWNLOAD_LINKS_PREFIX + "kuzu_java.jar",
isLinkAnchor: true,
},
{
language: "Go",
platform: PLATFORMS.mac,
link: "go get github.com/kuzudb/go-kuzu",
isLinkAnchor: false,
},
{
language: "Go",
platform: PLATFORMS.linux,
link: "go get github.com/kuzudb/go-kuzu",
isLinkAnchor: false,
},
];

const languages = [...new Set(data.map((item) => item.language))];
Expand Down

0 comments on commit b94cdbb

Please sign in to comment.