Explorar el Código

Add docstrings

Mauricio Araujo hace 2 años
padre
commit
f919ba9b93
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      internal/billing/billing.go

+ 2 - 0
internal/billing/billing.go

@@ -35,10 +35,12 @@ func (s *NoopBillingManager) CreateCustomer(userEmail string, proj *models.Proje
 	return "", nil
 }
 
+// DeleteCustomer is a no-op
 func (s *NoopBillingManager) DeleteCustomer(proj *models.Project) (err error) {
 	return nil
 }
 
+// CheckPaymentEnabled is a  no-op
 func (s *NoopBillingManager) CheckPaymentEnabled(proj *models.Project) (paymentEnabled bool, err error) {
 	return false, nil
 }