const std = @import("std"); const memora = @import("memora"); const Context = memora.Context; pub const access = .users; const Body = struct { id: []const u8, }; pub fn post(ctx: *Context, body: Body) anyerror!void { return ctx.storage.images.delete(ctx.storage, body.id); }