Files
aptly/main.go
Andrey Smirnov 516dd7b044 Switch to gometalinter
Only small amount of required checks is enabled,
plan is to enable more linters as issues are fixed in the code.
2017-03-23 01:51:08 +03:00

12 lines
135 B
Go

package main
import (
"os"
"github.com/smira/aptly/cmd"
)
func main() {
os.Exit(cmd.Run(cmd.RootCommand(), os.Args[1:], true))
}