mirror of
https://github.com/mgechev/revive.git
synced 2024-11-21 17:16:40 +02:00
5ccebe86c2
* 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()
|
|
}
|