mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-18 15:02:09 +00:00
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
// Copyright 2017-2020 The ShadowEditor Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
//
|
|
// For more information, please visit: https://github.com/tengge1/ShadowEditor
|
|
// You can also visit: https://gitee.com/tengge1/ShadowEditor
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/inconshreveable/mousetrap"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
cfgFile string
|
|
|
|
rootCmd = &cobra.Command{
|
|
Use: "ShadowEditor",
|
|
Short: "3D scene editor based on three.js golang and mongodb",
|
|
Long: `ShadowEditor is a 3D scene editor based on three.js, golang and mongodb.
|
|
This application uses mongodb to store data.`,
|
|
}
|
|
)
|
|
|
|
// Execute executes the root command. It displays useful information, and register all other commands.
|
|
//
|
|
// When you double click ShadowEditor.exe in the windows explorer, run `serve` command.
|
|
func Execute() {
|
|
if mousetrap.StartedByExplorer() {
|
|
// double click in the explorer of the windows system
|
|
runServe()
|
|
} else {
|
|
// use command line
|
|
rootCmd.Execute()
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "./config.toml", "config file")
|
|
|
|
rootCmd.AddCommand(serveCmd)
|
|
rootCmd.AddCommand(versionCmd)
|
|
}
|