mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
13 lines
187 B
Go
13 lines
187 B
Go
//go:generate go run doc/gen_docs.go
|
|
//go:generate go run misc/gen_completion.go
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/commands"
|
|
)
|
|
|
|
func main() {
|
|
commands.Execute()
|
|
}
|