mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
dev: Using collection expressions, no functional change
This commit is contained in:
@@ -6,17 +6,62 @@ public class MedusaeRepositoryService : IMedusaeRepositoryService, INService
|
||||
{
|
||||
// Simulate retrieving data from a database or API
|
||||
await Task.Delay(100);
|
||||
return new List<ModuleItem>
|
||||
{
|
||||
new ModuleItem { Name = "RSS Reader", Description = "Keep up to date with your favorite websites", Command = ".meinstall rss" },
|
||||
new ModuleItem { Name = "Password Manager", Description = "Safely store and manage all your passwords", Command = ".meinstall passwordmanager" },
|
||||
new ModuleItem { Name = "Browser Extension", Description = "Enhance your browsing experience with useful tools", Command = ".meinstall browserextension" },
|
||||
new ModuleItem { Name = "Video Downloader", Description = "Download videos from popular websites", Command = ".meinstall videodownloader" },
|
||||
new ModuleItem { Name = "Virtual Private Network", Description = "Securely browse the web and protect your privacy", Command = ".meinstall vpn" },
|
||||
new ModuleItem { Name = "Ad Blocker", Description = "Block annoying ads and improve page load times", Command = ".meinstall adblocker" },
|
||||
new ModuleItem { Name = "Cloud Storage", Description = "Store and share your files online", Command = ".meinstall cloudstorage" },
|
||||
new ModuleItem { Name = "Social Media Manager", Description = "Manage all your social media accounts in one place", Command = ".meinstall socialmediamanager" },
|
||||
new ModuleItem { Name = "Code Editor", Description = "Write and edit code online", Command = ".meinstall codeeditor" }
|
||||
};
|
||||
return
|
||||
[
|
||||
new()
|
||||
{
|
||||
Name = "RSS Reader",
|
||||
Description = "Keep up to date with your favorite websites",
|
||||
Command = ".meinstall rss"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Password Manager",
|
||||
Description = "Safely store and manage all your passwords",
|
||||
Command = ".meinstall passwordmanager"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Browser Extension",
|
||||
Description = "Enhance your browsing experience with useful tools",
|
||||
Command = ".meinstall browserextension"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Video Downloader",
|
||||
Description = "Download videos from popular websites",
|
||||
Command = ".meinstall videodownloader"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Virtual Private Network",
|
||||
Description = "Securely browse the web and protect your privacy",
|
||||
Command = ".meinstall vpn"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Ad Blocker",
|
||||
Description = "Block annoying ads and improve page load times",
|
||||
Command = ".meinstall adblocker"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Cloud Storage",
|
||||
Description = "Store and share your files online",
|
||||
Command = ".meinstall cloudstorage"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Social Media Manager",
|
||||
Description = "Manage all your social media accounts in one place",
|
||||
Command = ".meinstall socialmediamanager"
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Code Editor",
|
||||
Description = "Write and edit code online",
|
||||
Command = ".meinstall codeeditor"
|
||||
}
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user