Files
ent/entc/gen/template/import.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

33 lines
752 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 "import" }}
import (
"fmt"
"context"
"errors"
"math"
"strconv"
"strings"
"time"
{{/* ignore generting on graph templates */}}
{{ if not (eq $.Config.Package $.Package) }}
"{{ $.Config.Package }}/predicate"
"{{ $.Config.Package }}/{{ $.Package }}"
{{ with $.Config.Schema }} "{{ . }}" {{ end }}
{{ end }}
"github.com/facebookincubator/ent"
"github.com/facebookincubator/ent/dialect"
{{ range $_, $storage := $.Storage -}}
{{ range $_, $import := $storage.Imports -}}
"{{ $import }}"
{{ end -}}
{{ end -}}
)
{{ end }}