UNPKG

@boostbank/pterodactyl-installer

Version:
24 lines (17 loc) 620 B
const Command = require('../../../models/Command'); const colors = require('colors'); const helpMessage = ` ${colors.yellow("-----WebServer Help-----")} ${colors.grey("Commands:")} ${colors.cyan("pti webserver help - Webserver help command.")} ${colors.cyan("pti webserver -domain=sub.test.com - Setup Nginx Web Server With SSL.")} ${colors.yellow("-----------------------")}`; class WebServerHelp extends Command{ constructor(){ super("help", "pti webserver help"); } runCommand(args){ console.log(helpMessage); } } module.exports = WebServerHelp;