macro_rules! get_attributes {
() => {
{
use crate::asterix::uap::common::datatypes::{AsterixAttribute, AttributeType};
vec![
// Attributes from 1st field
AsterixAttribute::new(2, 1, 12, 1, "Track Number".to_string(), "track_number".to_string(), AttributeType::UInt16),
]
}
};
}
pub(crate) use get_attributes;