mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-16 02:33:26 +03:00
16 lines
163 B
Go
16 lines
163 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/99designs/gqlgen/cmd"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Generating graphql code ...")
|
|
|
|
cmd.Execute()
|
|
}
|