… and rename from tests to it (integration tests). This allows enabling the mod_module_files lint everywhere again.
14 lines
241 B
Rust
14 lines
241 B
Rust
use ruma_common::{api::Metadata, metadata};
|
|
|
|
const _: Metadata = metadata! {
|
|
method: GET,
|
|
rate_limited: false,
|
|
authentication: None,
|
|
history: {
|
|
unstable => "/a/path",
|
|
1.1 => deprecated,
|
|
}
|
|
};
|
|
|
|
fn main() {}
|