veza/veza-backend-api/internal/services/royalty_service.go
2025-12-03 20:29:37 +01:00

18 lines
406 B
Go

package services
import "context"
// RoyaltyService is a stub for the missing royalty service
type RoyaltyService struct{}
func NewRoyaltyService() *RoyaltyService {
return &RoyaltyService{}
}
func (s *RoyaltyService) CalculateRoyalties(ctx context.Context) error {
return nil
}
func (s *RoyaltyService) GetUserRoyalties(ctx context.Context, userID string) (interface{}, error) {
return nil, nil
}