providers.rs
1mod azure;
2mod bitbucket;
3mod chromium;
4mod forgejo;
5mod gitea;
6mod gitee;
7mod github;
8mod gitlab;
9mod sourcehut;
10
11pub use azure::*;
12pub use bitbucket::*;
13pub use chromium::*;
14pub use forgejo::*;
15pub use gitea::*;
16pub use gitee::*;
17pub use github::*;
18pub use gitlab::*;
19pub use sourcehut::*;