Add core module structure

This commit is contained in:
2026-03-06 01:28:44 +02:00
parent 2a5e0e7289
commit dab049b0d3
7 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1 @@
// Application configuration

View File

@@ -0,0 +1 @@
// Error types

View File

@@ -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")
}

View File

@@ -0,0 +1 @@
// Image processing operations

View File

@@ -0,0 +1 @@
// Processing pipeline

View File

@@ -0,0 +1 @@
// Preset management

View File

@@ -0,0 +1 @@
// Core domain types for image processing