13 lines
280 B
Python
13 lines
280 B
Python
|
|
|
|
from infrastructure.providers.streaming.Provider import Provider
|
|
from infrastructure.providers.streaming.voe import VOE
|
|
|
|
class Providers:
|
|
|
|
def __init__(self):
|
|
self.dict = {"VOE": VOE()}
|
|
|
|
def GetProvider(self, key: str) -> Provider:
|
|
return self.dict[key]
|