mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
13 lines
198 B
Go
13 lines
198 B
Go
//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()
|
|
}
|