1
1
mirror of https://github.com/wader/fq.git synced 2024-09-20 00:08:01 +03:00
fq/fq.go
Mattias Wadman ca68e6a1e4 interp: Add Platform() method to OS interface
Felt bad that main should have to know about it
2022-01-29 11:31:36 +01:00

14 lines
210 B
Go

package main
import (
_ "github.com/wader/fq/format/all"
"github.com/wader/fq/format/registry"
"github.com/wader/fq/pkg/cli"
)
const version = "0.0.4"
func main() {
cli.Main(registry.Default, version)
}