dialect/sql: add godoc regarding the dialect/sql package (#745)

This commit is contained in:
Ariel Mashraki
2020-09-09 12:25:17 +03:00
committed by GitHub
parent b4b4fa95d7
commit d16e78e686

View File

@@ -2,6 +2,13 @@
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Package sql provides wrappers around the standard database/sql package
// to allow the generated code to interact with a statically-typed API.
//
// Users that are interacting with this package should be aware that the
// following builders don't check the given SQL syntax nor validate or escape
// user-inputs. ~All validations are expected to be happened in the generated
// ent package.
package sql
import (