UNPKG

atix-internetmarke

Version:

A node wrapper for the Internetmarke web service of the Deutsche Post.

25 lines (18 loc) 527 B
/** * internetmarke * Copyright (c) 2018 Manuel Schächinger * MIT Lisenced */ 'use strict'; const AddressFactory = require('./AddressFactory'), ClientFactory = require('./ClientFactory'), PartnerFactory = require('./PartnerFactory'), UserFactory = require('./UserFactory'); const factory = { createAddress: AddressFactory.create, bindAddresses: AddressFactory.bind, createClient: ClientFactory.create, createPartner: PartnerFactory.create, createUser: UserFactory.create }; module.exports = factory;