Files
faas-cli/app.go
John McCabe b6d7fc1931 Migrate all imports/references to OpenFaaS org
This commit updates all imports and references in documentation/scripts to
point at the new github OpenFaaS org.

Signed-off-by: John McCabe <john@johnmccabe.net>
2017-09-25 17:19:20 +01:00

21 lines
406 B
Go

// Copyright (c) Alex Ellis 2017. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package main
import (
"fmt"
"os"
"github.com/openfaas/faas-cli/commands"
)
func main() {
customArgs, err := translateLegacyOpts(os.Args)
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
commands.Execute(customArgs)
}