| 1234567891011121314151617181920212223 |
- package make
- import (
- "fmt"
- "github.com/spf13/cobra"
- )
- var CmdMakeFactory = &cobra.Command{
- Use: "factory",
- Short: "Create model's factory file, example: make factory user",
- Run: runMakeFactory,
- Args: cobra.ExactArgs(1),
- }
- func runMakeFactory(cmd *cobra.Command, args []string) {
- model := makeModelFromString(args[0])
- filePath := fmt.Sprintf("database/factories/%s_factory.go", model.PackageName)
- createFileFromTpl(filePath, "factory", model)
- }
|