Files
ent/entc/integration/plugin/testdata/printer.go
facebook-github-bot 267e3c15bd Initial commit
fbshipit-source-id: c79a38536e3c128dce1b2948615b72ec9779ed22
2019-06-16 04:37:51 -07:00

17 lines
250 B
Go

package main
import (
"fmt"
"fbc/ent/entc/gen"
"fbc/ent/entc/plugin"
)
// Gen is the required plugin symbol.
var Gen = plugin.GeneratorFunc(func(graph *gen.Graph) error {
for _, n := range graph.Nodes {
fmt.Println(n.Name)
}
return nil
})