|
package repository
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gateway/internal/model/auth/domain/entity"
|
|
)
|
|
|
|
// RegistrationMetaRepository persists registration audit records.
|
|
type RegistrationMetaRepository interface {
|
|
Insert(ctx context.Context, rec *entity.RegistrationMetadata) error
|
|
}
|