You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
586 B
Python

8 months ago
# -*- 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, neutralize
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,
check_resource_path,
initialize_sys_path,
get_manifest,
load_openerp_module,
)