timoth-y/kicksware-api

View on GitHub
services/users/core/repo/subscriptionRepository.go

Summary

Maintainability
A
0 mins
Test Coverage
package repo

import "go.kicksware.com/api/services/users/core/model"

type SubscriptionRepository interface {
    Add(record model.MailSubscription) error
    Delete(email string) error
}