Set up the initial code structure for the clock.

This commit is contained in:
Tom Alexander
2023-04-21 19:02:16 -04:00
parent 2d4a592846
commit c2ccf4da37
6 changed files with 52 additions and 0 deletions

8
src/parser/clock.rs Normal file
View File

@@ -0,0 +1,8 @@
use super::Context;
use crate::error::Res;
use crate::parser::Clock;
#[tracing::instrument(ret, level = "debug")]
pub fn clock<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s str, Clock<'s>> {
todo!()
}