feat: scaffold ug-parser infrastructure crate

This commit is contained in:
2026-04-08 01:40:26 +02:00
parent a5897a29d8
commit 6435d92f8c
5 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1 @@
pub struct UgTabFetcher;

View File

@@ -0,0 +1,5 @@
pub mod fetcher;
pub mod parser;
pub use fetcher::UgTabFetcher;
pub use parser::UgHtmlParser;

View File

@@ -0,0 +1 @@
pub struct UgHtmlParser;