-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshops.js
59 lines (52 loc) · 1.63 KB
/
shops.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
51
52
53
54
55
56
57
58
59
import ShopWeinquelle from './shops/shop_weinquelle.js';
import ShopGetraenkeWeltWeiser from './shops/shop_getraenkeweltweiser.js';
import ShopDeinWhiskyHomeOfMalts from './shops/shop_deinWhisky_homeOfMalts.js';
// import ShopWhic from './shops/shop_whic.js';
// import ShopFassgeist from './shops/shop_fassgeist.js';
// import ShopWhiskyWorld from './shops/shop_whiskyworld.js';
// import ShopWeisshaus from './shops/shop_weisshaus.js';
export default [
{
name: 'weinquelle',
class: ShopWeinquelle,
url: 'https://www.weinquelle.com/whisky/Neuheiten.html'
},
// {
// name: 'getraenkeWeltWeiser',
// class: ShopGetraenkeWeltWeiser,
// url: 'https://www.getraenkewelt-weiser.de/category.php/whisky/neuheiten'
// },
// {
// name: 'deinWhiskey',
// class: ShopDeinWhiskyHomeOfMalts,
// url: 'https://www.deinwhisky.de/neues/'
// },
// BROKEN
// {
// name: 'whic',
// class: ShopWhic,
// url: 'https://whic.de/neuheiten'
// },
// BROKEN
// {
// name: 'fassgeist',
// class: ShopFassgeist,
// url: 'https://fassgeist.de/collections/all'
// },
// {
// name: 'homeOfMalts',
// class: ShopDeinWhiskyHomeOfMalts,
// url: 'https://www.homeofmalts.com/whisky/'
// },
// {
// name: 'whiskyWorld',
// class: ShopWhiskyWorld,
// url: 'https://www.whiskyworld.de/alle-whiskies'
// },
// BROKEN
// {
// name: 'weisshaus',
// class: ShopWeisshaus,
// url: 'https://www.weisshaus.de/whisky/'
// },
]