Files
aptly/main.go
T
Simon Aquino 3c7696ef7e Refactored main.go
The main function - whuch runs aptly commands - has been taken out from
main.go and included to the cmd package. This is useful for the aptly
script run command, which should use that behaviour.
2014-08-16 13:55:13 +00:00

11 lines
106 B
Go

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