404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.14.251.36: ~ $
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GitNamespace = void 0;
const namespace_1 = require("../../lib/namespace");
class GitNamespace extends namespace_1.Namespace {
    async getMetadata() {
        return {
            name: 'git',
            summary: 'Commands relating to managing Appflow git',
            groups: ["paid" /* PAID */],
        };
    }
    async getCommands() {
        return new namespace_1.CommandMap([
            ['clone', async () => { const { GitCloneCommand } = await Promise.resolve().then(() => require('./clone')); return new GitCloneCommand(this); }],
            ['remote', async () => { const { GitRemoteCommand } = await Promise.resolve().then(() => require('./remote')); return new GitRemoteCommand(this); }],
        ]);
    }
}
exports.GitNamespace = GitNamespace;

Filemanager

Name Type Size Permission Actions
clone.d.ts File 319 B 0644
clone.js File 1.62 KB 0644
index.d.ts File 328 B 0644
index.js File 850 B 0644
remote.d.ts File 320 B 0644
remote.js File 3.17 KB 0644