Skip to content

Commit

Permalink
feat: Provide default values for repo and dir
Browse files Browse the repository at this point in the history
Signed-off-by: AlexNg <[email protected]>
  • Loading branch information
caffeine-addictt committed Aug 28, 2024
1 parent 4c14411 commit c75c042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/options/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (

// The options for the new command
var NewOpts = NewOptions{
Repo: *types.NewValueGuardNoParsing("", types.REPO),
Repo: *types.NewValueGuardNoParsing("https://github.com/caffeine-addictt/template", types.REPO),
Branch: *types.NewValueGuardNoParsing("", types.BRANCH),
Directory: *types.NewValueGuardNoParsing("", types.PATH),
Directory: *types.NewValueGuardNoParsing("template", types.PATH),
}

type NewOptions struct {
Expand Down

0 comments on commit c75c042

Please sign in to comment.