mirror of
https://github.com/bringout/oca-ocb-hw.git
synced 2026-04-18 03:41:58 +02:00
10 lines
194 B
Python
10 lines
194 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
import odoo
|
|
|
|
|
|
def db_list(force=False, host=None):
|
|
return []
|
|
|
|
odoo.http.db_list = db_list
|