initial skeleton
This commit is contained in:
parent
dc79fa2448
commit
71f89dde9c
60 changed files with 3480 additions and 0 deletions
19
crates/aim-core/src/adapters/mod.rs
Normal file
19
crates/aim-core/src/adapters/mod.rs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pub mod custom_json;
|
||||
pub mod direct_url;
|
||||
pub mod github;
|
||||
pub mod gitlab;
|
||||
pub mod sourceforge;
|
||||
pub mod test_support;
|
||||
pub mod traits;
|
||||
pub mod zsync;
|
||||
|
||||
pub fn all_adapter_kinds() -> Vec<&'static str> {
|
||||
vec![
|
||||
"github",
|
||||
"gitlab",
|
||||
"direct-url",
|
||||
"zsync",
|
||||
"sourceforge",
|
||||
"custom-json",
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue