flectra/flectra/modules/__init__.py

24 lines
590 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
""" Modules (also called addons) management.
"""
from . import db, graph, loading, migration, module, registry
from flectra.modules.loading import load_modules, reset_modules_state
from flectra.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,
)