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>
21 lines
406 B
Go
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)
|
|
}
|