Fully functioning auth and refresh, and oauth links display

This commit is contained in:
JP Stringham
2026-03-06 15:30:27 -05:00
parent 22bf9bbc2b
commit e8c844a282
4 changed files with 101 additions and 4 deletions

View File

@@ -65,7 +65,8 @@ fn main() {
Commands::GetAuthMetadata => app.get_auth_metadata(),
Commands::RegisterClient => app.register_client(),
Commands::AuthorizeDevice => app.authorize_device(),
Commands::ShowOauthLinks => app.show_oath_links(),
Commands::RefreshAuth => app.refresh_auth(),
Commands::ShowOauthLinks => app.show_oauth_links(),
}
}
//
@@ -153,5 +154,6 @@ enum Commands {
GetAuthMetadata,
RegisterClient,
AuthorizeDevice,
RefreshAuth,
ShowOauthLinks,
}