Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // CreateCmd represents the create command CreateCmd = &cobra.Command{ Use: "create", Short: "Creates the boilerplate for dynQL project.", Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) error { p, err := createProjectStructure(args[0], force) err = os.Chdir(p) if err != nil { return err } _, err = helpers.ExecuteCommand(cmd.Root(), "add", "schema", schema) return err }, } )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.