gofimports/cmd/gofimports/main.go

10 lines
108 B
Go
Raw Permalink Normal View History

2022-11-24 16:11:15 +00:00
package main
2023-01-17 09:04:54 +00:00
import (
2023-01-17 10:21:39 +00:00
"github.com/haunt98/gofimports/internal/cli"
2023-01-17 09:04:54 +00:00
)
2022-11-24 16:11:15 +00:00
func main() {
cli.NewApp().Run()
}