mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-09-18 03:39:49 +00:00
feat: implement basic oauth api
This commit is contained in:
parent
887838bec6
commit
5b0dfd7b36
8 changed files with 497 additions and 9 deletions
|
@ -6,6 +6,7 @@ mod desktop;
|
|||
mod error;
|
||||
mod extensions;
|
||||
mod filesystem;
|
||||
mod oauth;
|
||||
|
||||
use crate::{app::App, cache::AppCache};
|
||||
use browser_extension::WsState;
|
||||
|
@ -135,7 +136,10 @@ pub fn run() {
|
|||
clipboard::clipboard_read,
|
||||
clipboard::clipboard_copy,
|
||||
clipboard::clipboard_paste,
|
||||
clipboard::clipboard_clear
|
||||
clipboard::clipboard_clear,
|
||||
oauth::oauth_set_tokens,
|
||||
oauth::oauth_get_tokens,
|
||||
oauth::oauth_remove_tokens
|
||||
])
|
||||
.setup(|app| {
|
||||
let app_handle = app.handle().clone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue