Typings pyi

This commit is contained in:
Kamil
2024-11-29 22:48:29 +00:00
parent 33ccbc470c
commit aa718eb628
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
from .spotify import SpotifyClient
__all__ = ["SpotifyClient"]

7
app/typings.pyi Normal file
View File

@@ -0,0 +1,7 @@
from flask import g
from providers.base import MusicProviderClient
g: "Global"
class Global:
music_provider: MusicProviderClient