upp/pkg/interfaces/upp.go

14 lines
222 B
Go
Raw Normal View History

2024-12-30 15:09:02 +08:00
package interfaces
import (
"github.com/elastic/go-elasticsearch/v7"
"github.com/loveuer/upp/pkg/cache"
"gorm.io/gorm"
)
type Upp interface {
UseDB() *gorm.DB
UseCache() cache.Cache
UseES() *elasticsearch.Client
}