rename public_types => common and move common code there

This commit is contained in:
Adil Hafeez 2024-10-16 10:42:54 -07:00
parent db202578d3
commit 93ea6e1a3d
35 changed files with 458 additions and 791 deletions

12
crates/common/src/lib.rs Normal file
View file

@ -0,0 +1,12 @@
#![allow(unused_imports)]
pub mod common_types;
pub mod configuration;
pub mod consts;
pub mod embeddings;
pub mod http;
pub mod llm_providers;
pub mod ratelimit;
pub mod routing;
pub mod stats;
pub mod tokenizer;