refactor: extract NostrEvent

This commit is contained in:
Vlad Stan 2023-02-17 14:13:06 +02:00
parent c42d81f696
commit 6be0169ea9
7 changed files with 119 additions and 105 deletions

View file

@ -1,9 +1,10 @@
from typing import List
from .event import NostrEvent
from .client_connection import NostrClientConnection
from ..crud import get_config_for_all_active_relays
from ..models import NostrEvent, RelaySpec
from ..models import RelaySpec
class NostrClientManager: