Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
1 | """Entry point defined here.""" |
||
8 | class Paystack(PayStackBase): |
||
9 | """Base class defined for PayStack Instance Method.""" |
||
10 | |||
11 | def __init__(self, secret_key=None): |
||
12 | """Instantiate Basic Classes to call here.""" |
||
13 | PayStackBase.__init__(self, secret_key=secret_key) |
||
14 | self.transaction = Transaction |
||
15 | self.customer = Customer |
||
16 | self.plan = Plan |
||
17 |