organic/src/parser/timestamp.rs

11 lines
307 B
Rust
Raw Normal View History

2023-07-24 17:34:07 -04:00
use super::Context;
use crate::error::Res;
use crate::parser::util::not_yet_implemented;
use crate::parser::Timestamp;
#[tracing::instrument(ret, level = "debug")]
pub fn timestamp<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s str, Timestamp<'s>> {
not_yet_implemented()?;
todo!()
}