Add core module structure
This commit is contained in:
@@ -0,0 +1 @@
|
||||
// Application configuration
|
||||
@@ -0,0 +1 @@
|
||||
// Error types
|
||||
@@ -1,3 +1,10 @@
|
||||
pub mod config;
|
||||
pub mod error;
|
||||
pub mod operations;
|
||||
pub mod pipeline;
|
||||
pub mod preset;
|
||||
pub mod types;
|
||||
|
||||
pub fn version() -> &'static str {
|
||||
env!("CARGO_PKG_VERSION")
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
// Image processing operations
|
||||
@@ -0,0 +1 @@
|
||||
// Processing pipeline
|
||||
@@ -0,0 +1 @@
|
||||
// Preset management
|
||||
@@ -0,0 +1 @@
|
||||
// Core domain types for image processing
|
||||
Reference in New Issue
Block a user