12 lines
119 B
Go
12 lines
119 B
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Store interface {
|
|
Session(ctx context.Context) *gorm.DB
|
|
}
|