12 lines
142 B
Go
12 lines
142 B
Go
package router
|
|
|
|
import (
|
|
"github.com/redis/go-redis/v9"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Dependencies struct {
|
|
DB *gorm.DB
|
|
Redis *redis.Client
|
|
}
|