Add installation guides for OpenClaw and uv package manager

This commit is contained in:
2026-04-28 12:56:13 +08:00
parent 2830a10a1b
commit b13cd32d6a
34 changed files with 0 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const keytar = require('C:/Users/33644/AppData/Roaming/npm/node_modules/@halo-dev/cli/node_modules/keytar');
async function main() {
const service = 'halo-dev-cli';
const account = 'bearer-token';
const token = await keytar.getPassword(service, account);
if (token) {
console.log(token);
} else {
console.log('No token found');
}
}
main().catch(console.error);