aboutsummaryrefslogtreecommitdiffstats
path: root/git-bug.go
blob: 99fe81c5a20ec5ddc206567c03f219e8f2a93fe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//go:generate go run doc/gen_docs.go
//go:generate go run misc/completion/gen_completion.go

package main

import (
	"github.com/MichaelMure/git-bug/commands"
)

func main() {
	commands.Execute()
}