-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
50 lines (33 loc) · 1.3 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const { address } = require('./structures/address')
const { contact, auctionContact } = require('./structures/contact')
const { fleet } = require('./structures/fleet')
const { vehicle } = require('./structures/fleet')
const { rel, rels } = require('./structures/rels')
const { point, package: packageFn, transport } = require('./structures/transport')
const { auction } = require('./structures/auction')
const { bid } = require('./structures/bid')
const { filter, filters } = require('./structures/filter')
const sfu = require('./structures/sfu')
const notification = require('./structures/notification')
const extractPackageAndStepInformation = require('./tools/auction/extractPackageAndStepInformation')
exports.address = () => address
exports.contact = () => contact
exports.fleet = () => fleet
exports.vehicle = () => vehicle
exports.auctionContact = () => auctionContact
exports.rel = () => rel
exports.rels = () => rels
exports.point = () => point
exports.package = () => packageFn
exports.transport = () => transport
exports.auction = config => auction(config)
exports.bid = config => bid(config)
exports.filter = () => filter
exports.filters = () => filters
exports.sfu = () => sfu
exports.notification = () => notification
exports.tools = {
auction: {
extractPackageAndStepInformation,
},
};