您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

35 行
563 B

  1. package cmd
  2. import "github.com/urfave/cli/v2"
  3. var gitignore = `# Created by .ignore support plugin (hsz.mobi)
  4. ### Example user template template
  5. ### Example user template
  6. # IntelliJ project files
  7. .idea
  8. *.iml
  9. out
  10. gen
  11. /runtime
  12. ### Go template
  13. # Binaries for programs and plugins
  14. *.exe
  15. *.exe~
  16. *.dll
  17. *.so
  18. *.dylib
  19. # Test binary, built with 'go test -c\'
  20. *.test
  21. # Output of the go coverage tool, specifically when used with LiteIDE
  22. *.out
  23. # Dependency directories (remove the comment below to include it)
  24. # vendor/`
  25. func New(c *cli.Context) error {
  26. return nil
  27. }