package store
import (
"context"
"gorm.io/gorm"
)
type Store interface {
Session(ctx context.Context) *gorm.DB
}