Skip to content

Commit 361b629

Browse files
Make get_jwt_token method public
1 parent e2aab92 commit 361b629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/headers/lnurl_auth_jwt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl LnurlAuthToJwtProvider {
128128
parse_jwt_token(untrusted_token)
129129
}
130130

131-
async fn get_jwt_token(&self, force_refresh: bool) -> Result<String, VssHeaderProviderError> {
131+
pub async fn get_jwt_token(&self, force_refresh: bool) -> Result<String, VssHeaderProviderError> {
132132
let cached_token_str = if force_refresh {
133133
None
134134
} else {

0 commit comments

Comments
 (0)