asimov_runner/
adapter.rs

1// This is free and unencumbered software released into the public domain.
2
3use std::ffi::OsStr;
4
5pub use asimov_patterns::AdapterOptions;
6
7/// RDF dataset adapter. Consumes SPARQL input, produces RDF output.
8#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
9pub struct Adapter {}
10
11impl Adapter {
12    pub fn new(_program: impl AsRef<OsStr>, _options: AdapterOptions) -> Self {
13        Self {}
14    }
15}