aboutsummaryrefslogblamecommitdiffstats
path: root/misc/random_bugs/cmd/main.go
blob: b017439e099c1bcce1ba73ed905682d80fc13e16 (plain) (tree)
1
2
3
4
5
6




            
                                            






                                                                             

                                               




                              



                                            
                                                                                  



                          
                                                      
 
package main

import (
	"os"

	"github.com/MichaelMure/git-bug/bug"
	rb "github.com/MichaelMure/git-bug/misc/random_bugs"
	"github.com/MichaelMure/git-bug/repository"
)

// This program will randomly generate a collection of bugs in the repository
// of the current path
func main() {
	const gitBugApplicationName = "git-bug"

	dir, err := os.Getwd()
	if err != nil {
		panic(err)
	}

	loaders := []repository.ClockLoader{
		bug.ClockLoader,
	}

	repo, err := repository.OpenGoGitRepo(dir, gitBugApplicationName, loaders)
	if err != nil {
		panic(err)
	}

	rb.CommitRandomBugs(repo, rb.DefaultOptions())
}