aboutsummaryrefslogtreecommitdiff
path: root/src/storage/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-11-15 15:12:19 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-11-15 15:12:19 +0100
commit0016aaa197697ec5ff38dfb3f63ac8b6f74b48e0 (patch)
tree688930dcc978bcadfc01dac4ff09908452d802a4 /src/storage/root.zig
parent69488029a8eafc55d42ae7e65ba8ddeebcfb8454 (diff)
backend: add image upload
Diffstat (limited to 'src/storage/root.zig')
-rw-r--r--src/storage/root.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage/root.zig b/src/storage/root.zig
index f1a753c..c121ca9 100644
--- a/src/storage/root.zig
+++ b/src/storage/root.zig
@@ -3,6 +3,7 @@ const config = @import("../config.zig");
const prompt = @import("../prompt.zig");
pub const User = @import("user.zig");
+pub const Image = @import("image.zig");
pub const SessionManager = @import("session-manager/root.zig");
pub const Session = SessionManager.Session;