mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
11 lines
271 B
Zig
11 lines
271 B
Zig
pub const DiscordCommand = struct {
|
|
const discord_url = "https://bun.com/discord";
|
|
pub fn exec(_: std.mem.Allocator) !void {
|
|
open.openURL(discord_url);
|
|
}
|
|
};
|
|
|
|
const bun = @import("bun");
|
|
const open = @import("../open.zig");
|
|
const std = @import("std");
|