1
2
3
4
5
use prost_types::FileDescriptorSet;

pub trait Preprocessor {
    fn process(&mut self, fds: &mut FileDescriptorSet, buf: &mut String);
}