featurebase/cmd/featurebase/main.go
2022-01-21 10:57:05 -07:00

20 lines
345 B
Go

// Copyright 2021 Molecula Corp. All rights reserved.
/*
This is the entrypoint for the Pilosa binary.
*/
package main
import (
"fmt"
"os"
"github.com/molecula/featurebase/v3/cmd"
)
func main() {
rootCmd := cmd.NewRootCommand(os.Stdin, os.Stdout, os.Stderr)
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}