feat(core): declare module structure

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
dailz
2026-04-10 21:19:01 +08:00
co-authored by Sisyphus
parent 843b3db081
commit 53250e5903
14 changed files with 42 additions and 8 deletions
+13
View File
@@ -0,0 +1,13 @@
use crate::error::Result;
use std::path::Path;
pub struct FileReader {/* TODO */}
impl FileReader {
pub fn open(_path: &Path) -> Result<Self> {
todo!()
}
pub fn file_size(&self) -> u64 {
todo!()
}
}
+1
View File
@@ -0,0 +1 @@
pub struct LineIndex {/* TODO */}
+2
View File
@@ -0,0 +1,2 @@
pub mod file_reader;
pub mod line_index;