mirror of
https://github.com/NaN-tic/trytond-party_company.git
synced 2023-12-14 03:32:57 +01:00
f3310379e3
From changeset-033bb5cdc41e
11 lines
295 B
Python
11 lines
295 B
Python
# The COPYRIGHT file at the top level of this repository contains the full
|
|
# copyright notices and license terms.
|
|
from trytond.pool import PoolMeta
|
|
from . import party
|
|
|
|
__all__ = ['Carrier']
|
|
|
|
|
|
class Carrier(object, party.PartyCompanyMixin):
|
|
__metaclass__ = PoolMeta
|
|
__name__ = 'carrier'
|