12 lines
272 B
Python
12 lines
272 B
Python
from trytond.pool import Pool
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
module='account_co_co', type_='model')
|
|
Pool.register(
|
|
module='account_co_co', type_='wizard')
|
|
Pool.register(
|
|
module='account_co_co', type_='report')
|