mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
25 lines
248 B
Go
25 lines
248 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/usefathom/fathom/pkg/cli"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
version = "dev"
|
||
|
commit = "none"
|
||
|
date = "unknown"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
err := cli.Run(version)
|
||
|
if err != nil {
|
||
|
fmt.Print(err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
|
||
|
os.Exit(0)
|
||
|
}
|