mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 23:12:14 +08:00
9 lines
178 B
Go
9 lines
178 B
Go
|
|
package ent
|
|||
|
|
|
|||
|
|
import "entgo.io/ent/dialect"
|
|||
|
|
|
|||
|
|
// Driver 暴露底层 driver,供需要 raw SQL 的集成层使用。
|
|||
|
|
func (c *Client) Driver() dialect.Driver {
|
|||
|
|
return c.driver
|
|||
|
|
}
|