New

public struct New : ParsableCommand

A command to create a new application.

  • See ParsableCommand.

    Declaration

    Swift

    public static let configuration: CommandConfiguration
  • The name of an application.

    Declaration

    Swift

    @Option
    public var name: String { get set }
  • Initializes a new instance.

    Declaration

    Swift

    public init()
  • Initializes a new instance with the name of an application.

    Declaration

    Swift

    public init(name: String)

    Parameters

    name

    The name of an application.

  • See ParsableCommand.

    Declaration

    Swift

    public func run() throws