aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/gen_graphql.go
blob: 41fa71a9731091f2fb655fd0bbf8605c08ad4407 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +build ignore

package main

import (
	"fmt"

	"github.com/99designs/gqlgen/cmd"
)

func main() {
	fmt.Println("Generating graphql code ...")

	cmd.Execute()
}