mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
11 lines
134 B
Go
11 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"github.com/smira/aptly/cmd"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(cmd.Run(cmd.RootCommand(), os.Args[1:], true))
|
|
}
|