Skip to content

Commit

Permalink
Citadel -> Verifiable Matcher (2 of N)
Browse files Browse the repository at this point in the history
Summary:
Now starting to replace it in the code. Started with:
```
rg citadel verifiable_matcher/ -l | xargs sed 's/citadel/verifiable_matcher/g' -i
```
And then fixed up issues, e.g. renamed a few files to make crates work again.

Differential Revision: D53553089

fbshipit-source-id: 5c0c7a3924ddab05c9ded4d41b23deb6258b87f8
  • Loading branch information
Mark Isaacson authored and facebook-github-bot committed Feb 12, 2024
1 parent 285f2cf commit 9334c4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions supertd/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use td_util::tracing::init_tracing;
enum Args {
Btd(btd::Args),
#[cfg(fbcode_build)]
Citadel(citadel::Args),
Citadel(verifiable_matcher::Args),
#[cfg(fbcode_build)]
Ranker(ranker::Args),
#[cfg(fbcode_build)]
Expand Down Expand Up @@ -60,7 +60,7 @@ pub fn main(fb: FacebookInit) -> anyhow::Result<()> {
Ok(args) => match args {
Args::Btd(args) => btd::main(args),
#[cfg(fbcode_build)]
Args::Citadel(args) => citadel::main(args),
Args::Citadel(args) => verifiable_matcher::main(args),
#[cfg(fbcode_build)]
Args::Ranker(args) => ranker::main(args),
#[cfg(fbcode_build)]
Expand Down

0 comments on commit 9334c4b

Please sign in to comment.