-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: more api-keys deps boilerplate (#3467)
* chore: buck build for reqwest and graphql client * chore: add updated rings fixup from buck2 upstream Source: buck2/.../shim/third-party/rust/fixups/ring/fixups.toml * chore: add ring/include to fixups --------- Co-authored-by: Sandipan Dey <[email protected]> Co-authored-by: vindard <[email protected]>
- Loading branch information
1 parent
9fec52a
commit 1bc677a
Showing
21 changed files
with
2,968 additions
and
31 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
pub struct AdminClient {} | ||
|
||
impl AdminClient { | ||
pub fn new() -> Result<Self, String> { | ||
unimplemented!() | ||
} | ||
} |
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,2 @@ | ||
// pub mod graphql; | ||
pub mod admin_client; | ||
pub mod graphql; |
Oops, something went wrong.