Remove RelayHubStatus, NostrFeed, and related composables for codebase cleanup

- Delete RelayHubStatus.vue and its associated components to streamline the application structure.
- Remove NostrFeed.vue to eliminate unused functionality and improve maintainability.
- Eliminate the legacy useRelayHub composable, reflecting a shift towards modular service architecture.
- Clean up router configuration by removing references to deleted components, enhancing clarity and organization.
This commit is contained in:
padreug 2025-09-05 05:29:58 +02:00
parent ee8dd37761
commit 18f48581cd
5 changed files with 0 additions and 1077 deletions

View file

@ -1,7 +0,0 @@
// Legacy composable stub - replaced by modular base module services
export function useRelayHub() {
return {
connectedRelays: [],
status: 'disconnected'
}
}