|
| 1 | +package data |
| 2 | + |
| 3 | +var Product = map[string][]string{ |
| 4 | + "category": { |
| 5 | + "electronics", "clothing", "home appliances", "furniture", |
| 6 | + "automotive parts", "beauty and personal care", "books", "sports equipment", |
| 7 | + "toys and games", "outdoor gear", "pet supplies", "kitchenware", |
| 8 | + "health and wellness", "tools and hardware", "office supplies", |
| 9 | + "baby products", "jewelry", "home decor", "musical instruments", |
| 10 | + "fitness equipment", "mobile phones", "computer accessories", "cameras and photography", |
| 11 | + "gardening supplies", "bedding and linens", "food and groceries", "party supplies", |
| 12 | + "craft and diy supplies", "camping gear", "watches", "luggage and travel accessories", |
| 13 | + "board games", "art supplies", "stationery", "bath and shower products", |
| 14 | + "sunglasses", "educational toys", "headphones and earbuds", "sneakers and athletic shoes", |
| 15 | + "coffee and tea products", "bicycles and accessories", "cookware", "cosmetics", |
| 16 | + "home improvement", "pet food", "laptop bags and cases", "home security systems", |
| 17 | + "musical accessories", "skincare products", "smart home devices", |
| 18 | + }, |
| 19 | + |
| 20 | + "adjective": { |
| 21 | + "bold", "swift", "pure", "smart", "fresh", |
| 22 | + "cool", "sharp", "zen", "bright", "quick", |
| 23 | + "robust", "sleek", "versatile", "innovative", "compact", |
| 24 | + "luxe", "modular", "precision", "stream", |
| 25 | + }, |
| 26 | + |
| 27 | + "name": { |
| 28 | + "phone", "laptop", "tablet", "watch", "camera", |
| 29 | + "headphones", "speaker", "drone", "car", "bike", |
| 30 | + "appliance", "gadget", "tool", "toy", "game", |
| 31 | + "computer", "console", "smartwatch", "fitness tracker", "smart home device", |
| 32 | + "robot", "router", "television", "smart speaker", "vr headset", |
| 33 | + "earbuds", "printer", "mouse", "keyboard", "monitor", |
| 34 | + "microwave", "blender", "vacuum", "fan", "toaster", |
| 35 | + "clock", "lamp", "shaver", "scale", "thermometer", |
| 36 | + "fridge", "oven", "mixer", "iron", "hair dryer", |
| 37 | + "fan", "scale", "thermostat", "router", "lightbulb", |
| 38 | + }, |
| 39 | + |
| 40 | + "feature": { |
| 41 | + "wireless", "smart", "eco-friendly", "advanced", "compact", |
| 42 | + "high-performance", "energy-efficient", "portable", "durable", "stylish", |
| 43 | + "touchscreen", "water-resistant", "noise-canceling", "voice-controlled", "ultra-lightweight", |
| 44 | + "multi-functional", "user-friendly", "fast-charging", "biometric", "gps-enabled", |
| 45 | + }, |
| 46 | + |
| 47 | + "material": { |
| 48 | + "titanium", "carbon", "alloy", "bamboo", "leather", |
| 49 | + "glass", "ceramic", "aluminum", "stainless", "wood", |
| 50 | + "plastic", "rubber", "silicon", "fabric", "paper", |
| 51 | + "gold", "silver", "brass", "copper", "bronze", |
| 52 | + "chrome", "marble", "granite", "porcelain", "plexiglass", |
| 53 | + "quartz", "felt", "suede", |
| 54 | + }, |
| 55 | + |
| 56 | + "suffix": { |
| 57 | + "tech", "pro", "x", "plus", "elite", |
| 58 | + "spark", "nexus", "nova", "fusion", "sync", |
| 59 | + "edge", "boost", "max", "link", "prime", |
| 60 | + "zoom", "pulse", "dash", "connect", "blaze", |
| 61 | + "quantum", "spark", "vertex", "core", "flux", |
| 62 | + "turbo", "shift", "wave", "matrix", |
| 63 | + }, |
| 64 | +} |
0 commit comments