mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 13:27:38 +00:00
feat(store): add asus (#102)
Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import {Store} from './store';
|
||||
|
||||
export const Asus: Store = {
|
||||
links: [
|
||||
{
|
||||
brand: 'asus',
|
||||
model: 'tuf oc',
|
||||
url: 'https://store.asus.com/us/item/202009AM160000001/',
|
||||
oosLabels: ['coming soon', 'temporarily sold out']
|
||||
},
|
||||
{
|
||||
brand: 'asus',
|
||||
model: 'tuf',
|
||||
url: 'https://store.asus.com/us/item/202009AM150000004/',
|
||||
oosLabels: ['coming soon', 'temporarily sold out']
|
||||
}
|
||||
],
|
||||
name: 'asus'
|
||||
};
|
||||
|
||||
@@ -1,16 +1,20 @@
|
||||
|
||||
import {Amazon} from './amazon';
|
||||
import {AmazonCa} from './amazon-ca';
|
||||
import {Asus} from './asus';
|
||||
import {BestBuy} from './bestbuy';
|
||||
import {BAndH} from './bandh';
|
||||
import {Evga} from './evga';
|
||||
import {NewEgg} from './newegg';
|
||||
import {Amazon} from './amazon';
|
||||
import {MicroCenter} from './microcenter';
|
||||
import {Config} from '../../config';
|
||||
import {Evga} from './evga';
|
||||
import {MicroCenter} from './microcenter';
|
||||
import {NewEgg} from './newegg';
|
||||
import {Nvidia} from './nvidia';
|
||||
import {AmazonCa} from './amazon-ca';
|
||||
|
||||
|
||||
const masterList = new Map([
|
||||
[Amazon.name, Amazon],
|
||||
[AmazonCa.name, AmazonCa],
|
||||
[Asus.name, Asus],
|
||||
[BestBuy.name, BestBuy],
|
||||
[BAndH.name, BAndH],
|
||||
[Evga.name, Evga],
|
||||
|
||||
Reference in New Issue
Block a user