feat: init

This commit is contained in:
zhenyi
2026-06-07 11:30:56 +08:00
commit 563381c1ca
361 changed files with 41327 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
pub mod pr_assignees;
pub mod pr_check_runs;
pub mod pr_commits;
pub mod pr_events;
pub mod pr_files;
pub mod pr_label_relations;
pub mod pr_labels;
pub mod pr_merge_strategy;
pub mod pr_reactions;
pub mod pr_review;
pub mod pr_review_comment;
pub mod pr_status;
pub mod pr_subscriptions;
pub mod pull_request;
pub mod pull_request_queries;
pub use pr_assignees::PrAssignee;
pub use pr_check_runs::PrCheckRun;
pub use pr_commits::PrCommit;
pub use pr_events::PrEvent;
pub use pr_files::PrFile;
pub use pr_label_relations::PrLabelRelation;
pub use pr_labels::PrLabel;
pub use pr_merge_strategy::PrMergeStrategy;
pub use pr_reactions::PrReaction;
pub use pr_review::PrReview;
pub use pr_review_comment::PrReviewComment;
pub use pr_status::PrStatus;
pub use pr_subscriptions::PrSubscription;
pub use pull_request::PullRequest;