Create structure for timestamps.

This commit is contained in:
Tom Alexander
2023-07-24 17:34:07 -04:00
parent 73e15286dc
commit fa5fc41121
6 changed files with 59 additions and 2 deletions

10
src/parser/timestamp.rs Normal file
View File

@@ -0,0 +1,10 @@
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!()
}