13 lines
329 B
Go
13 lines
329 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"code.30cm.net/digimon/app-cloudep-order-service/pkg/domain/entity"
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type RememberMeRepository interface {
|
||
|
Insert(ctx context.Context, data *entity.RememberMe) error
|
||
|
FindOne(ctx context.Context, uid string) (*entity.RememberMe, error)
|
||
|
Delete(ctx context.Context, uid string) error
|
||
|
}
|