迁移文件

This commit is contained in:
whyour
2023-01-04 17:04:02 +08:00
parent 0eab181d46
commit a3cbf8cdf4
172 changed files with 4189 additions and 241 deletions
+13
View File
@@ -0,0 +1,13 @@
import { CommandModule } from 'yargs';
export const updateCommand: CommandModule = {
command: 'update',
describe: 'Update and restart qinglong',
builder: (yargs) => {
return yargs.option('repositority', {
type: 'string',
alias: 'r',
describe: `Specify the release warehouse address of the package`,
});
},
handler: async (argv) => {},
};