-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement timers to fetch Google certs. (#2774)
* Implement timers to fetch Google certs. * 🤖 cargo-fmt auto-update * Update did * 🤖 npm run generate auto-update * Use http request with closure, move all google related code to google module. * 🤖 npm run generate auto-update * Use if else instead of match * 🤖 cargo-fmt auto-update * Remove Google specific prefix from state variable scoped to google module. * Trap if unwrap fails and use match. --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
19560e5
commit f773987
Showing
5 changed files
with
63 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
pub(crate) mod google; | ||
mod google; | ||
|
||
pub fn setup_timers() { | ||
google::setup_timers(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters