Skip to content

Commit

Permalink
fix abc error for solana auth backend
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvictor committed Apr 10, 2024
1 parent 50e1e5f commit 5b4bef2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws_packages"
version = "0.0.19"
version = "0.0.20"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 4 additions & 0 deletions aws_packages/auth/solana/auth_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ def get_access_token(self, user: User) -> str:
token = AccessToken()
return token.get_access_token(user)

def get_refresh_token(self, user: User, token: str) -> str:
"""Get the refresh token for the given user"""
raise NotImplementedError("get_refresh_token is not implemented")


solana_auth_backend = SolanaAuthBackend(
url="https://ic0.app",
Expand Down

0 comments on commit 5b4bef2

Please sign in to comment.