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