use crate::ShExFormat;
#[derive(Debug, Clone)]
pub enum ResolveMethod {
RotatingFormats(Vec<ShExFormat>),
ByGuessingExtension,
ByContentNegotiation,
}
impl Default for ResolveMethod {
fn default() -> Self {
ResolveMethod::RotatingFormats(vec![ShExFormat::ShExC, ShExFormat::ShExJ])
}
}