mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-08 16:06:47 +00:00
17 lines
207 B
Go
17 lines
207 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/alexellis/faasd/cmd"
|
|
"github.com/alexellis/faasd/pkg"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(pkg.Version, pkg.GitCommit); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
return
|
|
|
|
}
|