mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
8 lines
144 B
Go
8 lines
144 B
Go
package graphql
|
|
|
|
import "github.com/graphql-go/graphql"
|
|
|
|
func resolveBug(p graphql.ResolveParams) (interface{}, error) {
|
|
return "world", nil
|
|
}
|