faasd/main.go
Alex Ellis (OpenFaaS Ltd) 17a5e2c625 Extract file for version command
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-31 12:18:27 +00:00

15 lines
146 B
Go

package main
import (
"os"
"github.com/alexellis/faasd/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
return
}