9 lines
134 B
Python
9 lines
134 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from trytond.pool import Pool
|
||
|
|
||
|
|
||
|
def register():
|
||
|
Pool.register(
|
||
|
module='cashbook', type_='model')
|