timoth-y/kicksware-api

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

Summary

Maintainability
A
0 mins
Test Coverage
package repo

type LikesRepository interface {
    AddLike(userID string, entityID string) error
    RemoveLike(userID string, entityID string) error
}