2023-01-04 12:24:36 -05:00
|
|
|
// Copyright 2023 The Hugo Authors. All rights reserved.
|
2018-04-11 01:54:08 -04:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2023-01-04 12:24:36 -05:00
|
|
|
"github.com/bep/simplecobra"
|
2018-04-11 01:54:08 -04:00
|
|
|
)
|
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
// newExec wires up all of Hugo's CLI.
|
|
|
|
func newExec() (*simplecobra.Exec, error) {
|
|
|
|
rootCmd := &rootCommand{
|
|
|
|
commands: []simplecobra.Commander{
|
|
|
|
newVersionCmd(),
|
|
|
|
newEnvCommand(),
|
|
|
|
newServerCommand(),
|
|
|
|
newDeployCommand(),
|
|
|
|
newConfigCommand(),
|
|
|
|
newNewCommand(),
|
|
|
|
newConvertCommand(),
|
|
|
|
newImportCommand(),
|
|
|
|
newListCommand(),
|
|
|
|
newModCommands(),
|
|
|
|
newGenCommand(),
|
|
|
|
newReleaseCommand(),
|
2018-04-11 01:54:08 -04:00
|
|
|
},
|
2018-11-15 03:28:02 -05:00
|
|
|
}
|
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
return simplecobra.New(rootCmd)
|
2019-11-25 13:08:35 -05:00
|
|
|
|
2018-07-21 18:34:17 -04:00
|
|
|
}
|