mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-07 22:20:24 +00:00
3c7696ef7e
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.
11 lines
106 B
Go
11 lines
106 B
Go
package main
|
|
|
|
import (
|
|
"github.com/smira/aptly/cmd"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Run(os.Args[1:], true)
|
|
}
|