8 lines
231 B
Python
8 lines
231 B
Python
from trytond.pool import Pool
|
|
from . import automation,rules #, document
|
|
|
|
def register():
|
|
Pool.register(
|
|
automation.AutomationDocument,
|
|
rules.AutomationRuleSet,
|
|
module='automation', type_='model') |