Initial commit

This commit is contained in:
2025-10-04 16:25:50 +02:00
commit 436dbdfb01
38 changed files with 78719 additions and 0 deletions

7
packages/media/build.zig Normal file
View File

@@ -0,0 +1,7 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
_ = b.addModule("media", .{
.root_source_file = b.path("src/root.zig"),
});
}