diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-15 15:12:19 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-15 15:12:19 +0100 |
| commit | 0016aaa197697ec5ff38dfb3f63ac8b6f74b48e0 (patch) | |
| tree | 688930dcc978bcadfc01dac4ff09908452d802a4 /src/storage/root.zig | |
| parent | 69488029a8eafc55d42ae7e65ba8ddeebcfb8454 (diff) | |
backend: add image upload
Diffstat (limited to 'src/storage/root.zig')
| -rw-r--r-- | src/storage/root.zig | 1 |
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; |