Spaces:
Running
Running
| from abc import ABC, abstractmethod | |
| class PaymentGateway(ABC): | |
| def charge(self, amount): | |
| pass | |
| class StripeGateway: | |
| pass | |
| from abc import ABC, abstractmethod | |
| class PaymentGateway(ABC): | |
| def charge(self, amount): | |
| pass | |
| class StripeGateway: | |
| pass | |