split module loader in ModulesLoader and BackendsConfig classes
This commit is contained in:
parent
d03bd47981
commit
56fea28640
8 changed files with 141 additions and 49 deletions
|
|
@ -18,6 +18,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
"""
|
||||
|
||||
from .cap import ICap
|
||||
|
||||
class AccountNotFound(Exception): pass
|
||||
|
||||
class Account(object):
|
||||
|
|
@ -69,7 +71,7 @@ class Operation(object):
|
|||
self.amount = amount
|
||||
|
||||
|
||||
class ICapBank:
|
||||
class ICapBank(ICap):
|
||||
def iter_accounts(self):
|
||||
raise NotImplementedError()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue