mirror of
https://github.com/slimtoolkit/slim.git
synced 2025-06-03 04:00:23 +00:00
11 lines
247 B
Go
11 lines
247 B
Go
package registry
|
|
|
|
import (
|
|
"github.com/docker-slim/docker-slim/pkg/app/master/commands"
|
|
)
|
|
|
|
func RegisterCommand() {
|
|
commands.CLI = append(commands.CLI, CLI)
|
|
commands.CommandSuggestions = append(commands.CommandSuggestions, CommandSuggestion)
|
|
}
|