Fixes a circular import issue where `arcade.sdk -> arcade.core` but also `arcade.core -> arcade.sdk`. My mistake! Moved some of the shared classes down into `core`, and re-exported them to `sdk` to keep the expected interface for devs.
23 lines
294 B
Python
23 lines
294 B
Python
from arcade.core.auth import (
|
|
GitHub,
|
|
Google,
|
|
LinkedIn,
|
|
OAuth2,
|
|
Slack,
|
|
Spotify,
|
|
ToolAuthorization,
|
|
X,
|
|
Zoom,
|
|
)
|
|
|
|
__all__ = [
|
|
"GitHub",
|
|
"Google",
|
|
"LinkedIn",
|
|
"OAuth2",
|
|
"Slack",
|
|
"Spotify",
|
|
"ToolAuthorization",
|
|
"X",
|
|
"Zoom",
|
|
]
|