mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-11 20:00:26 +08:00
11 lines
144 B
Go
11 lines
144 B
Go
package repository
|
|
|
|
import (
|
|
"mayfly-go/internal/db/domain/entity"
|
|
"mayfly-go/pkg/base"
|
|
)
|
|
|
|
type DbSql interface {
|
|
base.Repo[*entity.DbSql]
|
|
}
|