mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 00:55:55 +00:00
20 lines
345 B
Go
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)
|
|
}
|
|
}
|