Skip to content

Commit

Permalink
Fix props
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Sep 13, 2023
1 parent 92e4bb8 commit c1a795d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions props/lemmy/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ impl CommunityProp {
}
}

fn main(cx: Arc<Context>) {
CommunityProp::new(cx).check();
fn main() {
dfcheck::cli(|cx| CommunityProp::new(cx).check())
}
2 changes: 1 addition & 1 deletion props/websubmit/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ impl DeletionProp {
}
}

pub fn main() {
fn main() {
dfcheck::cli(|cx| DeletionProp::new(cx).check())
}

0 comments on commit c1a795d

Please sign in to comment.