flectra/odoo/modules/__init__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

24 lines
575 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
""" Modules (also called addons) management.
"""
from . import db, graph, loading, migration, module, registry
from odoo.modules.loading import load_modules, reset_modules_state
from odoo.modules.module import (
adapt_version,
get_module_path,
get_module_resource,
get_modules,
get_modules_with_version,
get_resource_from_path,
get_resource_path,
initialize_sys_path,
load_information_from_description_file,
load_openerp_module,
)