mirror of
https://github.com/mgechev/revive.git
synced 2025-02-07 13:31:42 +02:00
* fix minor lint issue * fix package comments * fix comments * removes extra empty lines * fix import alias name
9 lines
139 B
Go
9 lines
139 B
Go
// Package main is the build entry point of revive.
|
|
package main
|
|
|
|
import "github.com/mgechev/revive/cli"
|
|
|
|
func main() {
|
|
cli.RunRevive()
|
|
}
|