feat: add sqlc

This commit is contained in:
AJ ONeal
2024-10-14 22:51:54 +00:00
parent f4ec7ca640
commit 231b6d12e4
4 changed files with 386 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
'use strict';
var github = require('../_common/github.js');
var owner = 'sqlc-dev';
var repo = 'sqlc';
module.exports = async function () {
let all = await github(null, owner, repo);
return all;
};
if (module === require.main) {
module.exports().then(function (all) {
all = require('../_webi/normalize.js')(all);
console.info(JSON.stringify(all));
});
}