Typings pyi
This commit is contained in:
3
app/providers/__init__.py
Normal file
3
app/providers/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .spotify import SpotifyClient
|
||||
|
||||
__all__ = ["SpotifyClient"]
|
||||
7
app/typings.pyi
Normal file
7
app/typings.pyi
Normal file
@@ -0,0 +1,7 @@
|
||||
from flask import g
|
||||
from providers.base import MusicProviderClient
|
||||
|
||||
g: "Global"
|
||||
|
||||
class Global:
|
||||
music_provider: MusicProviderClient
|
||||
Reference in New Issue
Block a user