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