Files
bun.sh/src/cli/discord_command.zig
pfg 83760fc446 Sort imports in all files (#21119)
Co-authored-by: taylor.fish <contact@taylor.fish>
2025-07-21 13:26:47 -07:00

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");