mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
Only small amount of required checks is enabled, plan is to enable more linters as issues are fixed in the code.
12 lines
135 B
Go
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))
|
|
}
|