2021-07-16 14:21:21 +00:00
|
|
|
# Copyright 2011-2017 Camptocamp SA
|
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from . import models
|
2021-07-22 15:21:38 +00:00
|
|
|
from .hooks import import_csv_data
|
|
|
|
|
|
|
|
|
|
|
|
def post_init(cr, registry):
|
|
|
|
import_csv_data(cr, registry)
|