Explorar el Código

Remove extra comments

Mauricio Araujo hace 2 años
padre
commit
28d58d3b57
Se han modificado 1 ficheros con 0 adiciones y 5 borrados
  1. 0 5
      internal/repository/referral.go

+ 0 - 5
internal/repository/referral.go

@@ -8,9 +8,4 @@ import (
 type ReferralRepository interface {
 	CreateReferral(referral *models.Referral) (*models.Referral, error)
 	GetReferralCountByUserID(userID uint) (int, error)
-	// ReadReferral(referralID uint) (*models.Referral, error)
-	// ReadReferralByUserID(userID, referralID string) (*models.Referral, error)
-	// ListReferralsByUserID(userID uint) ([]*models.Referral, error)
-	// UpdateReferral(referral *models.Referral) (*models.Referral, error)
-	// DeleteReferral(referralID uint) error
 }