From ee5de447d977999e7f5b4b41685d74ce28d63535 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 16 Dec 2019 00:40:30 -0500 Subject: move client id file manipulation out of oauth it doesn't actually have anything to do with the oauth flow --- teleterm/src/cmd/watch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'teleterm/src/cmd/watch.rs') diff --git a/teleterm/src/cmd/watch.rs b/teleterm/src/cmd/watch.rs index 7e6cb2d..e2e43e2 100644 --- a/teleterm/src/cmd/watch.rs +++ b/teleterm/src/cmd/watch.rs @@ -34,7 +34,7 @@ impl crate::config::Config for Config { } } crate::protocol::AuthType::RecurseCenter => { - let id = crate::oauth::load_client_auth_id(self.client.auth); + let id = crate::client::load_client_auth_id(self.client.auth); crate::protocol::Auth::recurse_center( id.as_ref().map(std::string::String::as_str), ) -- cgit v1.2.3-54-g00ecf