mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			264 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			264 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package application
 | 
						|
 | 
						|
import (
 | 
						|
	"mayfly-go/internal/db/domain/entity"
 | 
						|
	"mayfly-go/internal/db/domain/repository"
 | 
						|
	"mayfly-go/pkg/base"
 | 
						|
)
 | 
						|
 | 
						|
type DbSql interface {
 | 
						|
	base.App[*entity.DbSql]
 | 
						|
}
 | 
						|
 | 
						|
type dbSqlAppImpl struct {
 | 
						|
	base.AppImpl[*entity.DbSql, repository.DbSql]
 | 
						|
}
 |