mirror of
https://github.com/NaN-tic/trytond-bank_validation.git
synced 2023-12-14 06:53:05 +01:00
10 lines
329 B
Python
10 lines
329 B
Python
#This file is part bank_validation module for Tryton.
|
|
#The COPYRIGHT file at the top level of this repository contains
|
|
#the full copyright notices and license terms.
|
|
from trytond.pool import Pool
|
|
from .bank import *
|
|
|
|
def register():
|
|
Pool.register(
|
|
BankAccountNumber,
|
|
module='bank_validation', type_='model')
|