* Rename the module for publish on odoo marketplace. * More renaming needed.
14 lines
336 B
Python
14 lines
336 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import controllers
|
|
from . import models
|
|
|
|
from odoo.addons.payment import setup_provider, reset_payment_provider
|
|
|
|
|
|
def post_init_hook(env):
|
|
setup_provider(env, 'btcpayserver')
|
|
|
|
|
|
def uninstall_hook(env):
|
|
reset_payment_provider(env, 'btcpayserver') |