5fa7a82548
- Add .gitignore and .env.example files for project setup - Create build script for proto compilation with tonic-prost - Generate Cargo.lock with all project dependencies - Configure project structure and ignore patterns for development environment
16 lines
254 B
Rust
16 lines
254 B
Rust
pub mod config;
|
|
pub mod email;
|
|
pub mod email_build;
|
|
pub mod error;
|
|
pub mod queue;
|
|
pub mod server;
|
|
pub mod status;
|
|
|
|
pub mod pb {
|
|
pub mod email {
|
|
pub mod v1 {
|
|
include!(concat!(env!("OUT_DIR"), "/pb/email.v1.rs"));
|
|
}
|
|
}
|
|
}
|