mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
16 lines
203 B
Go
16 lines
203 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
_ "fq/format/all"
|
||
|
"fq/format/registry"
|
||
|
"fq/pkg/cli"
|
||
|
)
|
||
|
|
||
|
var version = "dev"
|
||
|
|
||
|
func main() {
|
||
|
defer cli.MaybeProfile()()
|
||
|
cli.MaybeLogFile()
|
||
|
cli.Main(registry.Default, version)
|
||
|
}
|