blob: 8c2bfdef04ba984897db73541acc97ffce307716 [file] [log] [blame]
Mohammed Naser5e52f872025-02-17 16:02:00 -05001pub mod github;
2pub mod opendev;
3
4use crate::clients::github::Client as GitHubClient;
5use crate::clients::opendev::Client as OpenDevClient;
6
7pub struct ClientSet {
8 pub github: GitHubClient,
9 pub opendev: OpenDevClient,
10}
11
12impl ClientSet {
13 pub fn new() -> Self {
14 ClientSet {
15 github: GitHubClient::new(),
16 opendev: OpenDevClient::new(),
17 }
18 }
19}