mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 08:38:58 +00:00
6 lines
129 B
Rust
6 lines
129 B
Rust
use crate::disk::RUSTFS_META_BUCKET;
|
|
|
|
pub fn is_meta_bucketname(name: &str) -> bool {
|
|
name.starts_with(RUSTFS_META_BUCKET)
|
|
}
|