Files
ent/entc/load/template/main.tmpl
Ariel Mashraki 4323141fe2 ent: add license and copyright to template files
Reviewed By: alexsn

Differential Revision: D17149292

fbshipit-source-id: 837de5fad988de1e54438b47584701f2fc35326d
2019-09-01 03:03:15 -07:00

47 lines
843 B
Cheetah

{{/*
Copyright 2019-present Facebook Inc. All rights reserved.
This source code is licensed under the Apache 2.0 license found
in the LICENSE file in the root directory of this source tree.
*/}}
{{ define "main" }}
// Code generated by 'entc generate'. DO NOT EDIT.
package main
import (
"os"
"bytes"
{{ template "imports" }}
{{ printf "%q" .Package }}
)
{{ $base := base .Package}}
var schemas = []ent.Interface{
{{ range $_, $name := .Names }}
{{- $base }}.{{- printf "%s{}" $name }},
{{ end -}}
}
func main() {
var lines [][]byte
for _, schema := range schemas {
b, err := MarshalSchema(schema)
if err != nil {
fail(err)
}
lines = append(lines, b)
}
os.Stdout.Write(bytes.Join(lines, []byte("\n")))
}
func fail(err error) {
os.Stderr.WriteString(err.Error())
os.Exit(1)
}
{{ template "schema" }}
{{ end }}