mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-20 07:32:08 +02:00
14 lines
380 B
Python
14 lines
380 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import controllers
|
|
from . import models
|
|
from . import utils
|
|
from . import wizards
|
|
|
|
|
|
def setup_provider(env, code, **kwargs):
|
|
env['payment.provider']._setup_provider(code, **kwargs)
|
|
|
|
|
|
def reset_payment_provider(env, code, **kwargs):
|
|
env['payment.provider']._remove_provider(code, **kwargs)
|