mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 06:28:18 +01:00
14 lines
229 B
Cheetah
14 lines
229 B
Cheetah
|
|
{{/* gotype: entgo.io/ent/entc/gen.Graph */}}
|
||
|
|
|
||
|
|
{{ define "ping" }}
|
||
|
|
|
||
|
|
{{ $pkg := base $.Config.Package }}
|
||
|
|
{{ template "header" $ }}
|
||
|
|
|
||
|
|
func (c *Client) Ping() error {
|
||
|
|
db := c.driver.(*sql.Driver).DB()
|
||
|
|
return db.Ping()
|
||
|
|
}
|
||
|
|
|
||
|
|
{{ end }}
|