Skip to content

Commit

Permalink
feat: define basic methods
Browse files Browse the repository at this point in the history
  • Loading branch information
abiriadev committed Mar 22, 2024
1 parent 19c54dc commit bf88027
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions crates/interfaces/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,17 @@ where
}

pub struct Session {}

impl Session {
pub fn lex(&self) {
todo!()
}

pub fn parse(&self) {
todo!()
}

pub fn exec(&self) {
todo!()
}
}

0 comments on commit bf88027

Please sign in to comment.