Last active
May 5, 2026 02:34
-
-
Save AndroidPoet/947b8bb7eed5c47e0ee782a6f5845a87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| supabase.auth.signInWithEmail( | |
| email = "user@example.com", | |
| password = "password" | |
| ).onSuccess { session -> | |
| sessionManager.saveSession(session) | |
| }.onFailure { error -> | |
| println("Login failed: ${error.message}") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment