mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
- development env: base on debian trixie with go1.24 - lint: run with default config - fix lint errors - fix unit tests - fix system test
17 lines
299 B
Go
17 lines
299 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/smira/commander"
|
|
)
|
|
|
|
func makeCmdDB() *commander.Command {
|
|
return &commander.Command{
|
|
UsageLine: "db",
|
|
Short: "manage aptly's internal database and package pool",
|
|
Subcommands: []*commander.Command{
|
|
makeCmdDBCleanup(),
|
|
makeCmdDBRecover(),
|
|
},
|
|
}
|
|
}
|