mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 13:41:49 +03:00
19 lines
360 B
Go
19 lines
360 B
Go
package main
|
|
|
|
import (
|
|
// bootstrap is the first import, do not move
|
|
_ "github.com/neilotoole/sq/cmd/bootstrap"
|
|
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/neilotoole/go-lg/lg"
|
|
"github.com/neilotoole/sq/cmd"
|
|
)
|
|
|
|
func main() {
|
|
str := "\n" + strings.Repeat("*", 80) + "\n > " + strings.Join(os.Args, " ") + "\n" + strings.Repeat("*", 80)
|
|
lg.Debugf(str)
|
|
cmd.Execute()
|
|
}
|