Macro follower_commands

Source
macro_rules! follower_commands {
    (
		$(
			$ds:ident {
				$(
					async fn $method:ident($($i:literal $arg:ident : $arg_ty:ty),*);
				)+
			}
		)*
	) => { ... };
}